diff options
author | Paul Smith <psmith@gnu.org> | 2000-01-22 05:43:03 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2000-01-22 05:43:03 +0000 |
commit | 5577cdc2616262ae89c28cda49b5dd5449be472d (patch) | |
tree | 9e5b67f4754ce5a2d64bad43d28a7eaf093b6274 /make.h | |
parent | b7b83d6398e8e552dd1b9d70d18d7262753e03d4 (diff) | |
download | gunmake-5577cdc2616262ae89c28cda49b5dd5449be472d.tar.gz |
* Merge VMS patches by Hartmut Becker.
Diffstat (limited to 'make.h')
-rw-r--r-- | make.h | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -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) |