summaryrefslogtreecommitdiff
path: root/lib/path-concat.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/path-concat.h
parent27d24b46ad376fc3bcdadaedfaf086d977584e7d (diff)
downloadcoreutils-727298f3f5174a6bf60e3d261cf37a6176584a07.tar.xz
Use PARAMS, not __P.
Diffstat (limited to 'lib/path-concat.h')
-rw-r--r--lib/path-concat.h20
1 files changed, 13 insertions, 7 deletions
diff --git a/lib/path-concat.h b/lib/path-concat.h
index 92c0a1180..8e2c22883 100644
--- a/lib/path-concat.h
+++ b/lib/path-concat.h
@@ -1,9 +1,15 @@
-#if __STDC__
-# undef __P
-# define __P(args) args
-#else
-# define __P(args) ()
-#endif
+#if ! defined PATH_CONCAT_H_
+# define PATH_CONCAT_H_
+
+# ifndef PARAMS
+# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
+# define PARAMS(Args) Args
+# else
+# define PARAMS(Args) ()
+# endif
+# endif
char *
-path_concat __P ((const char *dir, const char *base, char **base_in_result));
+path_concat PARAMS ((const char *dir, const char *base, char **base_in_result));
+
+#endif