summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>1994-07-25 23:27:48 +0000
committerRoland McGrath <roland@redhat.com>1994-07-25 23:27:48 +0000
commit5d435e08596f48e2692a4556eb1299f12079c605 (patch)
tree0348c11e6c2af60f7909b80cb61b2458ab8e81ff
parenta2ab31ba6283d9c373256647debd2ef4a355e380 (diff)
downloadgunmake-5d435e08596f48e2692a4556eb1299f12079c605.tar.gz
(PATH_SEPARATOR_CHAR): New macro; differing defns for [__MSDOS__] and not.
-rw-r--r--make.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/make.h b/make.h
index 5ff702c..49700bb 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 ();