mirror of
https://salsa.debian.org/srivasta/make-dfsg.git
synced 2024-12-26 14:00:56 +00:00
(PATH_SEPARATOR_CHAR): New macro; differing defns for [__MSDOS__] and not.
This commit is contained in:
parent
a2ab31ba62
commit
5d435e0859
1 changed files with 6 additions and 0 deletions
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 a new issue