summaryrefslogtreecommitdiff
path: root/lib/xstrtol.h
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1997-12-21 11:22:51 +0000
committerJim Meyering <jim@meyering.net>1997-12-21 11:22:51 +0000
commit727298f3f5174a6bf60e3d261cf37a6176584a07 (patch)
treee4c235d3a9c450bdf8dabafb811687dcca330be8 /lib/xstrtol.h
parent27d24b46ad376fc3bcdadaedfaf086d977584e7d (diff)
downloadcoreutils-727298f3f5174a6bf60e3d261cf37a6176584a07.tar.xz
Use PARAMS, not __P.
Diffstat (limited to 'lib/xstrtol.h')
-rw-r--r--lib/xstrtol.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/lib/xstrtol.h b/lib/xstrtol.h
index 5f351a7ba..3c16c7e01 100644
--- a/lib/xstrtol.h
+++ b/lib/xstrtol.h
@@ -13,26 +13,27 @@
# define __ZLONG_MAX LONG_MAX
# endif
-# undef PARAMS
-# if defined (__STDC__) && __STDC__
-# define PARAMS(Args) Args
-# else
-# define PARAMS(Args) ()
+# ifndef PARAMS
+# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
+# define PARAMS(Args) Args
+# else
+# define PARAMS(Args) ()
+# endif
# endif
-#ifndef _STRTOL_ERROR
+# ifndef _STRTOL_ERROR
enum strtol_error
{
LONGINT_OK, LONGINT_INVALID, LONGINT_INVALID_SUFFIX_CHAR, LONGINT_OVERFLOW
};
typedef enum strtol_error strtol_error;
-#endif
+# endif
strtol_error
__xstrtol PARAMS ((const char *s, char **ptr, int base,
__unsigned long int *val, const char *valid_suffixes));
-#undef _STRTOL_ERROR
+# undef _STRTOL_ERROR
# define _STRTOL_ERROR(Exit_code, Str, Argument_type_string, Err) \
do \
{ \