changeset 428:82f87868408c

Undef __P before defining. Guard definition with simpler `#if __STDC__'.
author Jim Meyering <jim@meyering.net>
date Sat, 13 May 1995 13:10:38 +0000
parents e452fef20925
children 32e744c364bf
files lib/makepath.h
diffstat 1 files changed, 3 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/lib/makepath.h
+++ b/lib/makepath.h
@@ -1,10 +1,9 @@
-#ifndef __P
-#if defined (__GNUC__) || (defined (__STDC__) && __STDC__)
+#if __STDC__
+#undef __P
 #define __P(args) args
 #else
 #define __P(args) ()
-#endif /* GCC.  */
-#endif /* Not __P.  */
+#endif
 
 int
   make_path __P ((const char *_argpath,