summaryrefslogtreecommitdiff
path: root/lib/hash.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/hash.h
parent27d24b46ad376fc3bcdadaedfaf086d977584e7d (diff)
downloadcoreutils-727298f3f5174a6bf60e3d261cf37a6176584a07.tar.xz
Use PARAMS, not __P.
Diffstat (limited to 'lib/hash.h')
-rw-r--r--lib/hash.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/hash.h b/lib/hash.h
index ddf4add25..1dbce5c2c 100644
--- a/lib/hash.h
+++ b/lib/hash.h
@@ -5,14 +5,6 @@
# include <config.h>
# endif
-# ifndef PARAMS
-# if defined (__GNUC__) || __STDC__
-# define PARAMS(args) args
-# else
-# define PARAMS(args) ()
-# endif
-# endif
-
# include <stdio.h>
# include <assert.h>
@@ -28,6 +20,14 @@ void free ();
char *malloc ();
# endif
+# ifndef PARAMS
+# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
+# define PARAMS(Args) Args
+# else
+# define PARAMS(Args) ()
+# endif
+# endif
+
# define USE_OBSTACK
# ifdef USE_OBSTACK
# include "obstack.h"