summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpsmith <>2010-07-20 13:12:06 +0000
committerpsmith <>2010-07-20 13:12:06 +0000
commit0cd4c8f10c79578d3aa95d6f24669c5fc2603b0d (patch)
treeb86f0dc82fb2d4cbf84b3e97feae91d0ee21ad68
parent1c7e321afed53a0908592c1ba203b6f090ded8d2 (diff)
downloadmake-0cd4c8f10c79578d3aa95d6f24669c5fc2603b0d.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 ed6593a5..ee14e9e4 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 4bc54cf2..60ade4c1 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