mirror of
https://git.savannah.gnu.org/git/make.git
synced 2024-11-28 09:25:17 +00:00
Fix up incorrect prototype.
This commit is contained in:
parent
fba20a776d
commit
f5d7411c49
2 changed files with 3 additions and 3 deletions
2
NEWS
2
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.
|
||||
|
||||
|
|
4
make.h
4
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
|
||||
|
||||
|
|
Loading…
Reference in a new issue