From: Jim Meyering Date: Sat, 4 Aug 2001 17:52:38 +0000 (+0000) Subject: (__attribute__): Remove `|| __STRICT_ANSI__' from #if stmt, X-Git-Tag: TEXTUTILS-2_0_15~501 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0e6ddcffef72387d4aeed4cb108c34837975c273;p=thirdparty%2Fcoreutils.git (__attribute__): Remove `|| __STRICT_ANSI__' from #if stmt, to get in sync with glibc. --- diff --git a/lib/error.h b/lib/error.h index 20f75824d6..177b2dcbe8 100644 --- a/lib/error.h +++ b/lib/error.h @@ -25,7 +25,7 @@ #ifndef __attribute__ /* This feature is available in gcc versions 2.5 and later. */ -# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5) || __STRICT_ANSI__ +# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5) # define __attribute__(Spec) /* empty */ # endif /* The __-protected variants of `format' and `printf' attributes