From: Roland McGrath Date: Mon, 25 Jul 1994 23:27:48 +0000 (+0000) Subject: (PATH_SEPARATOR_CHAR): New macro; differing defns for [__MSDOS__] and not. X-Git-Tag: 3.71.2~21 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5d435e08596f48e2692a4556eb1299f12079c605;p=thirdparty%2Fmake.git (PATH_SEPARATOR_CHAR): New macro; differing defns for [__MSDOS__] and not. --- diff --git a/make.h b/make.h index 5ff702c3..49700bba 100644 --- a/make.h +++ b/make.h @@ -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 ();