mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #270 from ARMmbed/fix_function_args
Move arg types into function declaration
commit
210180b652
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue