mirror of
https://github.com/mirror/make.git
synced 2025-03-25 01:00:30 +08:00
(PATH_SEPARATOR_CHAR): New macro; differing defns for [__MSDOS__] and not.
This commit is contained in:
parent
a2ab31ba62
commit
5d435e0859
6
make.h
6
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 ();
|
||||
|
Loading…
Reference in New Issue
Block a user