diff options
Diffstat (limited to 'posix/glob.c')
-rw-r--r-- | posix/glob.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/posix/glob.c b/posix/glob.c index d178cf0206..7d90c5bd16 100644 --- a/posix/glob.c +++ b/posix/glob.c @@ -250,11 +250,8 @@ int #ifdef GLOB_ATTRIBUTE GLOB_ATTRIBUTE #endif -glob (pattern, flags, errfunc, pglob) - const char *pattern; - int flags; - int (*errfunc) (const char *, int); - glob_t *pglob; +glob (const char *pattern, int flags, int (*errfunc) (const char *, int), + glob_t *pglob) { const char *filename; char *dirname = NULL; |