summaryrefslogtreecommitdiff
path: root/rts/fs_rts.h
diff options
context:
space:
mode:
Diffstat (limited to 'rts/fs_rts.h')
-rw-r--r--rts/fs_rts.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/rts/fs_rts.h b/rts/fs_rts.h
new file mode 100644
index 0000000000..12c27ccc8c
--- /dev/null
+++ b/rts/fs_rts.h
@@ -0,0 +1,15 @@
+/* -----------------------------------------------------------------------------
+ *
+ * (c) Tamar Christina 2018
+ *
+ * Hack to get around linkewhole issues on linux. The FS utilities need to be in
+ * a different namespace to allow the linking.
+ *
+ * ---------------------------------------------------------------------------*/
+
+#pragma once
+
+#undef FS_NAMESPACE
+#define FS_NAMESPACE rts
+
+#include "fs.h"