aboutsummaryrefslogtreecommitdiff
path: root/src/setup.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/setup.h')
-rw-r--r--src/setup.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/setup.h b/src/setup.h
index 78103f9ce..55ea7074f 100644
--- a/src/setup.h
+++ b/src/setup.h
@@ -82,10 +82,20 @@ int fileno( FILE *stream);
#define DIR_CHAR "\\"
#define DOT_CHAR "_"
#else
+#ifdef __EMX__
+/* 20000318 mgs
+ * OS/2 supports leading dots in filenames if the volume is formatted
+ * with JFS or HPFS. */
+#define PATH_CHAR ";"
+#define DIR_CHAR "\\"
+#define DOT_CHAR "."
+#else
+
#define PATH_CHAR ":"
#define DIR_CHAR "/"
#define DOT_CHAR "."
#endif
+#endif
#endif /* __SETUP_H */