From: Jim Meyering Date: Sat, 13 May 1995 13:10:38 +0000 (+0000) Subject: Undef __P before defining. X-Git-Tag: cvs-readonly~8741 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=4dbac07636dedff35f574a28c9dbcfe16b1cb0d3;p=gnulib.git Undef __P before defining. Guard definition with simpler `#if __STDC__'. --- diff --git a/lib/makepath.h b/lib/makepath.h index f555d7b4b..2756446c8 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,