diff options
author | Jim Meyering <jim@meyering.net> | 2001-08-04 17:52:38 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2001-08-04 17:52:38 +0000 |
commit | 0e6ddcffef72387d4aeed4cb108c34837975c273 (patch) | |
tree | 413652687605f56e0a6bcf6aeb10f105dc248e24 /lib | |
parent | a5fe0f8417c62fd1232384cc0d51d0af5814a4f8 (diff) | |
download | coreutils-0e6ddcffef72387d4aeed4cb108c34837975c273.tar.xz |
(__attribute__): Remove `|| __STRICT_ANSI__' from #if stmt,
to get in sync with glibc.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/error.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/error.h b/lib/error.h index 20f75824d..177b2dcbe 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 |