* io/fts.c (fts_open): Remove uses of __P.
This commit is contained in:
Ulrich Drepper 2004-09-07 17:28:11 +00:00
parent 3655715ba5
commit f863a5a5af
2 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,7 @@
2004-09-07 Ulrich Drepper <drepper@redhat.com>
* io/fts.c (fts_open): Remove uses of __P.
* include/stdlib.h: No need to use __THROW in this header.
2004-09-06 Roland McGrath <roland@frob.com>

View File

@ -88,7 +88,7 @@ FTS *
fts_open(argv, options, compar)
char * const *argv;
register int options;
int (*compar) __P((const FTSENT **, const FTSENT **));
int (*compar) (const FTSENT **, const FTSENT **);
{
register FTS *sp;
register FTSENT *p, *root;
@ -106,7 +106,7 @@ fts_open(argv, options, compar)
if ((sp = malloc((u_int)sizeof(FTS))) == NULL)
return (NULL);
memset(sp, 0, sizeof(FTS));
sp->fts_compar = (int (*) __P((const void *, const void *))) compar;
sp->fts_compar = (int (*) (const void *, const void *)) compar;
sp->fts_options = options;
/* Logical walks turn on NOCHDIR; symbolic links are too hard. */