From: Jim Meyering Date: Sat, 13 May 1995 13:10:38 +0000 (+0000) Subject: Undef __P before defining. X-Git-Tag: textutils-1_12_1~192 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5a69bc6e5fa05cf5c3ebc2677b43023b857a9a22;p=thirdparty%2Fcoreutils.git Undef __P before defining. Guard definition with simpler `#if __STDC__'. --- 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,