summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2010-07-20 13:12:06 +0000
committerPaul Smith <psmith@gnu.org>2010-07-20 13:12:06 +0000
commitf5d7411c496bc709f5676b4882e96e2c5a7251f3 (patch)
treed3ee83f75f89b79cb4fa898428a7537da7c7202e
parentfba20a776da6d4a36db21d9b21e9e937bef00ac3 (diff)
downloadgunmake-f5d7411c496bc709f5676b4882e96e2c5a7251f3.tar.gz
Fix up incorrect prototype.
-rw-r--r--NEWS2
-rw-r--r--make.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index ed6593a..ee14e9e 100644
--- a/NEWS
+++ b/NEWS
@@ -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.
diff --git a/make.h b/make.h
index 4bc54cf..60ade4c 100644
--- a/make.h
+++ b/make.h
@@ -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