Move arg types into function declaration

The args to rangematch didn't have any types specified.  This patch
adds a type to the args.
Russ Butler 2016-06-09 14:49:11 +01:00
parent 5fb2f8096a
commit 194d3ef2cb
1 changed files with 1 additions and 5 deletions

View File

@ -263,11 +263,7 @@ fnmatch(pattern, string, flags)
}
static int
rangematch(pattern, test, flags, newp)
const char *pattern;
char test;
int flags;
char **newp;
rangematch(const char *pattern, char test, int flags, char **newp)
{
int negate, ok;
char c, c2;