(PATH_SEPARATOR_CHAR): New macro; differing defns for [__MSDOS__] and not.

This commit is contained in:
Roland McGrath 1994-07-25 23:27:48 +00:00
parent a2ab31ba62
commit 5d435e0859

6
make.h
View file

@ -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 ();