From 3c88d96fd6a6e32ba426bbf5186ba9dc4d74e727 Mon Sep 17 00:00:00 2001 From: psmith Date: Tue, 20 Jul 2010 13:12:06 +0000 Subject: [PATCH] Fix up incorrect prototype. --- NEWS | 2 +- make.h | 4 ++-- 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 -- 2.11.4.GIT