diff options
author | Marek Polacek <polacek@redhat.com> | 2012-01-31 20:02:53 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-01-31 20:02:53 +0000 |
commit | 69db4f8f463e509a3e5ccc00e70aa9f94c359d34 (patch) | |
tree | ab473bd1cf67bcd6263c383809a27d03b4f62381 /stdlib | |
parent | 41b81892f11fe1353123e892158b53de73863d62 (diff) | |
download | glibc-69db4f8f463e509a3e5ccc00e70aa9f94c359d34.tar glibc-69db4f8f463e509a3e5ccc00e70aa9f94c359d34.tar.gz glibc-69db4f8f463e509a3e5ccc00e70aa9f94c359d34.tar.bz2 glibc-69db4f8f463e509a3e5ccc00e70aa9f94c359d34.zip |
Remove PARAMS macros.
Diffstat (limited to 'stdlib')
-rw-r--r-- | stdlib/strtol_l.c | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/stdlib/strtol_l.c b/stdlib/strtol_l.c index 9181bf10ee..325c01cac8 100644 --- a/stdlib/strtol_l.c +++ b/stdlib/strtol_l.c @@ -1,5 +1,6 @@ /* Convert string representing a number to integer value, using given locale. - Copyright (C) 1997, 2002, 2004, 2006, 2007, 2010 Free Software Foundation, Inc. + Copyright (C) 1997, 2002, 2004, 2006, 2007, 2010, 2012 + Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. @@ -536,16 +537,10 @@ libc_hidden_def (INTERNAL (__strtol_l)) /* External user entry point. */ #if _LIBC - 0 == 0 -# undef PARAMS -# if defined (__STDC__) && __STDC__ -# define PARAMS(Args) Args -# else -# define PARAMS(Args) () -# endif /* Prototype. */ -extern INT __strtol_l PARAMS ((const STRING_TYPE *nptr, STRING_TYPE **endptr, - int base)); +extern INT __strtol_l (const STRING_TYPE *nptr, STRING_TYPE **endptr, + int base); #endif |