From: Paul Smith Date: Tue, 20 Jul 2010 13:12:06 +0000 (+0000) Subject: Fix up incorrect prototype. X-Git-Tag: 3.82~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f5d7411c496bc709f5676b4882e96e2c5a7251f3;p=thirdparty%2Fmake.git Fix up incorrect prototype. --- 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