Merge pull request #270 from ARMmbed/fix_function_args

Move arg types into function declaration
Sam Grove 2016-06-09 15:08:21 +01:00
commit 210180b652
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;