1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00

Remove PARAMS macros.

This commit is contained in:
Marek Polacek
2012-01-31 20:02:53 +00:00
committed by Joseph Myers
parent 41b81892f1
commit 69db4f8f46
4 changed files with 11 additions and 18 deletions

View File

@ -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