summaryrefslogtreecommitdiff
path: root/lib/strtol.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1996-10-17 02:59:09 +0000
committerJim Meyering <jim@meyering.net>1996-10-17 02:59:09 +0000
commite24c0713be3ad2d52d6880dc7364fd6899ec7afe (patch)
tree2d283957f8a98fb1b701cc3d5707f36331d32b8d /lib/strtol.c
parent9b3498acb2e76bd7ffa2357aef89212568a516f6 (diff)
downloadcoreutils-e24c0713be3ad2d52d6880dc7364fd6899ec7afe.tar.xz
Define and use macro, PARAMS, not __P.
Diffstat (limited to 'lib/strtol.c')
-rw-r--r--lib/strtol.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/strtol.c b/lib/strtol.c
index ad0804931..9b4029ebb 100644
--- a/lib/strtol.c
+++ b/lib/strtol.c
@@ -340,16 +340,16 @@ noconv:
/* External user entry point. */
-#undef __P
+#undef PARAMS
#if defined (__STDC__) && __STDC__
-# define __P(args) args
+# define PARAMS(args) args
#else
-# define __P(args) ()
+# define PARAMS(args) ()
#endif
/* Prototype. */
-INT strtol __P ((const STRING_TYPE *nptr, STRING_TYPE **endptr,
- int base));
+INT strtol PARAMS ((const STRING_TYPE *nptr, STRING_TYPE **endptr,
+ int base));
INT