Update.
authorUlrich Drepper <drepper@redhat.com>
Tue, 7 Sep 2004 17:28:11 +0000 (17:28 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 7 Sep 2004 17:28:11 +0000 (17:28 +0000)
* io/fts.c (fts_open): Remove uses of __P.

ChangeLog
io/fts.c

index cd61d29..9444164 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
index 91d2ef6..7ce9351 100644 (file)
--- a/io/fts.c
+++ b/io/fts.c
@@ -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. */