From 5a69bc6e5fa05cf5c3ebc2677b43023b857a9a22 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 13 May 1995 13:10:38 +0000 Subject: [PATCH] Undef __P before defining. Guard definition with simpler `#if __STDC__'. --- lib/makepath.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lib/makepath.h b/lib/makepath.h index f555d7b4b6..2756446c84 100644 --- 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, -- 2.47.3