compat/fnmatch: update old-style definition to ANSI
We try to avoid touching borrowed code, but we encourage people to write without old-style definition and compile with -Werror these days, and on platforms that need to use NO_FNMATCH, these three functions make the compilation fail. Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
086cb91153
commit
38104ca6b9
@ -135,9 +135,9 @@ extern int errno;
|
|||||||
|
|
||||||
# if !defined HAVE___STRCHRNUL && !defined _LIBC
|
# if !defined HAVE___STRCHRNUL && !defined _LIBC
|
||||||
static char *
|
static char *
|
||||||
__strchrnul (s, c)
|
__strchrnul (const char *s, int c)
|
||||||
const char *s;
|
|
||||||
int c;
|
|
||||||
{
|
{
|
||||||
char *result = strchr (s, c);
|
char *result = strchr (s, c);
|
||||||
if (result == NULL)
|
if (result == NULL)
|
||||||
@ -159,11 +159,11 @@ static int internal_fnmatch __P ((const char *pattern, const char *string,
|
|||||||
internal_function;
|
internal_function;
|
||||||
static int
|
static int
|
||||||
internal_function
|
internal_function
|
||||||
internal_fnmatch (pattern, string, no_leading_period, flags)
|
internal_fnmatch (const char *pattern, const char *string, int no_leading_period, int flags)
|
||||||
const char *pattern;
|
|
||||||
const char *string;
|
|
||||||
int no_leading_period;
|
|
||||||
int flags;
|
|
||||||
{
|
{
|
||||||
register const char *p = pattern, *n = string;
|
register const char *p = pattern, *n = string;
|
||||||
register unsigned char c;
|
register unsigned char c;
|
||||||
@ -481,10 +481,10 @@ internal_fnmatch (pattern, string, no_leading_period, flags)
|
|||||||
|
|
||||||
|
|
||||||
int
|
int
|
||||||
fnmatch (pattern, string, flags)
|
fnmatch (const char *pattern, const char *string, int flags)
|
||||||
const char *pattern;
|
|
||||||
const char *string;
|
|
||||||
int flags;
|
|
||||||
{
|
{
|
||||||
return internal_fnmatch (pattern, string, flags & FNM_PERIOD, flags);
|
return internal_fnmatch (pattern, string, flags & FNM_PERIOD, flags);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user