Marco G. Salvagno's OS/2 changes

This commit is contained in:
Daniel Stenberg
2000-03-19 19:55:02 +00:00
parent ff3fd842d8
commit f9a839d906
2 changed files with 17 additions and 0 deletions

View File

@@ -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 */