diff options
author | Paul Smith <psmith@gnu.org> | 2010-07-20 13:12:06 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2010-07-20 13:12:06 +0000 |
commit | f5d7411c496bc709f5676b4882e96e2c5a7251f3 (patch) | |
tree | d3ee83f75f89b79cb4fa898428a7537da7c7202e | |
parent | fba20a776da6d4a36db21d9b21e9e937bef00ac3 (diff) | |
download | gunmake-f5d7411c496bc709f5676b4882e96e2c5a7251f3.tar.gz |
Fix up incorrect prototype.
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | make.h | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -1,6 +1,6 @@ GNU make NEWS -*-indented-text-*- History of user-visible changes. - 16 July 2010 + 19 July 2010 See the end of this file for copyrights and conditions. @@ -487,7 +487,7 @@ char *getwd (); # define strcasecmp strcmpi # else /* Create our own, in misc.c */ -int strcasecmp (const char *s1, const char *s2, int n); +int strcasecmp (const char *s1, const char *s2); # endif #endif @@ -498,7 +498,7 @@ int strcasecmp (const char *s1, const char *s2, int n); # define strncasecmp strncmpi # else /* Create our own, in misc.c */ -int strncasecmp (const char *s1, const char *s2); +int strncasecmp (const char *s1, const char *s2, int n); # endif #endif |