Skip to content

Commit 210180b

Browse files
committed
Merge pull request #270 from ARMmbed/fix_function_args
Move arg types into function declaration
2 parents 7704adc + 194d3ef commit 210180b

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

storage/cfstore/source/cfstore_fnmatch.c

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -263,11 +263,7 @@ fnmatch(pattern, string, flags)
263263
}
264264

265265
static int
266-
rangematch(pattern, test, flags, newp)
267-
const char *pattern;
268-
char test;
269-
int flags;
270-
char **newp;
266+
rangematch(const char *pattern, char test, int flags, char **newp)
271267
{
272268
int negate, ok;
273269
char c, c2;

0 commit comments

Comments
 (0)