diff options
Diffstat (limited to 'io')
-rw-r--r-- | io/fts.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/io/fts.c b/io/fts.c index ac1d340da8..f83267611f 100644 --- a/io/fts.c +++ b/io/fts.c @@ -85,10 +85,8 @@ static int fts_safe_changedir (FTS *, FTSENT *, int, const char *) #define BREAD 3 /* fts_read */ FTS * -fts_open(argv, options, compar) - char * const *argv; - int options; - int (*compar) (const FTSENT **, const FTSENT **); +fts_open (char * const *argv, int options, + int (*compar) (const FTSENT **, const FTSENT **)) { FTS *sp; FTSENT *p, *root; |