Path separator is ; on OS/2

This commit is contained in:
KO Myung-Hun
2015-05-07 12:51:22 +09:00
parent c29f892437
commit 8f633da789
5 changed files with 12 additions and 4 deletions

8
sh.h
View File

@@ -299,6 +299,14 @@ struct rusage {
} while (/* CONSTCOND */ 0)
#endif
#ifdef __OS2__
#define PATH_SEP ';'
#define PATH_SEP_STR ";"
#else
#define PATH_SEP ':'
#define PATH_SEP_STR ":"
#endif
#ifdef MKSH__NO_PATH_MAX
#undef PATH_MAX
#else