mirror of https://github.com/ARMmbed/mbed-os.git
Move arg types into function declaration
The args to rangematch didn't have any types specified. This patch adds a type to the args.
parent
5fb2f8096a
commit
194d3ef2cb
|
@ -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