summaryrefslogtreecommitdiff
path: root/make.h
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2000-01-22 05:43:03 +0000
committerPaul Smith <psmith@gnu.org>2000-01-22 05:43:03 +0000
commit5577cdc2616262ae89c28cda49b5dd5449be472d (patch)
tree9e5b67f4754ce5a2d64bad43d28a7eaf093b6274 /make.h
parentb7b83d6398e8e552dd1b9d70d18d7262753e03d4 (diff)
downloadgunmake-5577cdc2616262ae89c28cda49b5dd5449be472d.tar.gz
* Merge VMS patches by Hartmut Becker.
Diffstat (limited to 'make.h')
-rw-r--r--make.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/make.h b/make.h
index 8f1b057..18eb1c9 100644
--- a/make.h
+++ b/make.h
@@ -312,6 +312,9 @@ extern char *alloca ();
# define strieq(a, b) (strcmp ((a), (b)) == 0)
#endif
#define strneq(a, b, l) (strncmp ((a), (b), (l)) == 0)
+#ifdef VMS
+extern int strcmpi (const char *,const char *);
+#endif
/* Add to VAR the hashing value of C, one character in a name. */
#define HASH(var, c) \
@@ -449,10 +452,9 @@ extern long int lseek ();
#endif /* Not GNU C library or POSIX. */
#ifdef HAVE_GETCWD
+# if !defined(VMS) && !defined(__DECC)
extern char *getcwd ();
-# ifdef VMS
-extern char *getwd PARAMS ((char *));
-# endif
+#endif
#else
extern char *getwd ();
# define getcwd(buf, len) getwd (buf)