(PATH_SEPARATOR_CHAR): New macro; differing defns for [__MSDOS__] and not.
authorRoland McGrath <roland@redhat.com>
Mon, 25 Jul 1994 23:27:48 +0000 (23:27 +0000)
committerRoland McGrath <roland@redhat.com>
Mon, 25 Jul 1994 23:27:48 +0000 (23:27 +0000)
make.h

diff --git a/make.h b/make.h
index 5ff702c357f62865b6c71104a055004158f43627..49700bbaf31eb432d9e150275b7f36b8f287a0cf 100644 (file)
--- 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
+\f
 extern void die ();
 extern void message (), fatal (), error ();
 extern void makefile_error (), makefile_fatal ();