diff options
author | Roland McGrath <roland@redhat.com> | 1994-07-25 23:27:48 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1994-07-25 23:27:48 +0000 |
commit | 5d435e08596f48e2692a4556eb1299f12079c605 (patch) | |
tree | 0348c11e6c2af60f7909b80cb61b2458ab8e81ff | |
parent | a2ab31ba6283d9c373256647debd2ef4a355e380 (diff) | |
download | gunmake-5d435e08596f48e2692a4556eb1299f12079c605.tar.gz |
(PATH_SEPARATOR_CHAR): New macro; differing defns for [__MSDOS__] and not.
-rw-r--r-- | make.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -252,6 +252,12 @@ extern char *alloca (); #define ENUM_BITFIELD(bits) #endif +#ifdef __MSDOS__ +#define PATH_SEPARATOR_CHAR ';' +#else +#define PATH_SEPARATOR_CHAR ':' +#endif + extern void die (); extern void message (), fatal (), error (); extern void makefile_error (), makefile_fatal (); |