summaryrefslogtreecommitdiff
path: root/lib/xstrtod.h
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/xstrtod.h
parent9b3498acb2e76bd7ffa2357aef89212568a516f6 (diff)
downloadcoreutils-e24c0713be3ad2d52d6880dc7364fd6899ec7afe.tar.xz
Define and use macro, PARAMS, not __P.
Diffstat (limited to 'lib/xstrtod.h')
-rw-r--r--lib/xstrtod.h15
1 files changed, 7 insertions, 8 deletions
diff --git a/lib/xstrtod.h b/lib/xstrtod.h
index 5b61c46df..b2fffb278 100644
--- a/lib/xstrtod.h
+++ b/lib/xstrtod.h
@@ -1,15 +1,14 @@
#ifndef XSTRTOD_H
# define XSTRTOD_H 1
-# ifndef __P
-# if defined (__GNUC__) || (defined (__STDC__) && __STDC__)
-# define __P(Args) Args
-# else
-# define __P(Args) ()
-# endif
-# endif
+#undef PARAMS
+#if defined (__STDC__) && __STDC__
+# define PARAMS(Args) Args
+#else
+# define PARAMS(Args) ()
+#endif
int
- xstrtod __P ((const char *str, const char **ptr, double *result));
+ xstrtod PARAMS ((const char *str, const char **ptr, double *result));
#endif /* not XSTRTOD_H */