]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Remove use of __P.
authorUlrich Drepper <drepper@redhat.com>
Fri, 27 Jun 2008 21:36:13 +0000 (21:36 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 27 Jun 2008 21:36:13 +0000 (21:36 +0000)
time/strptime_l.c

index d5356d3b6a9016ed8b41931fa601c94a2963db6e..c4a0638fff8b1cf67351ac82974bab444ec607de 100644 (file)
 #endif
 
 
-#ifndef __P
-# if defined __GNUC__ || (defined __STDC__ && __STDC__)
-#  define __P(args) args
-# else
-#  define __P(args) ()
-# endif  /* GCC.  */
-#endif  /* Not __P.  */
-
-
 #if ! HAVE_LOCALTIME_R && ! defined localtime_r
 # ifdef _LIBC
 #  define localtime_r __localtime_r
 # else
 /* Approximate localtime_r as best we can in its absence.  */
 #  define localtime_r my_localtime_r
-static struct tm *localtime_r __P ((const time_t *, struct tm *));
+static struct tm *localtime_r (const time_t *, struct tm *);
 static struct tm *
 localtime_r (t, tp)
      const time_t *t;