From 727298f3f5174a6bf60e3d261cf37a6176584a07 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 21 Dec 1997 11:22:51 +0000 Subject: Use PARAMS, not __P. --- lib/makepath.h | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) (limited to 'lib/makepath.h') diff --git a/lib/makepath.h b/lib/makepath.h index e62f54433..f7c5b6026 100644 --- a/lib/makepath.h +++ b/lib/makepath.h @@ -1,15 +1,16 @@ -# undef __P -#if __STDC__ -# define __P(Args) Args -#else -# define __P(Args) () +#ifndef PARAMS +# if defined PROTOTYPES || (defined __STDC__ && __STDC__) +# define PARAMS(Args) Args +# else +# define PARAMS(Args) () +# endif #endif int -make_path __P ((const char *_argpath, - int _mode, - int _parent_mode, - uid_t _owner, - gid_t _group, - int _preserve_existing, - const char *_verbose_fmt_string)); +make_path PARAMS ((const char *_argpath, + int _mode, + int _parent_mode, + uid_t _owner, + gid_t _group, + int _preserve_existing, + const char *_verbose_fmt_string)); -- cgit v1.2.3-54-g00ecf