From: Jim Meyering Date: Sat, 9 Apr 2005 13:57:51 +0000 (+0000) Subject: Readability nit: X-Git-Tag: CPPI-1_12~1060 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0eb83b6534e6885605e842815cec99a2cd9354ad;p=thirdparty%2Fcoreutils.git Readability nit: Change this: # define __attribute__(x) to this: # define __attribute__(x) /* empty */ --- diff --git a/src/system.h b/src/system.h index ef121a5039..c908f4a777 100644 --- a/src/system.h +++ b/src/system.h @@ -737,7 +737,7 @@ enum #ifndef __attribute__ # if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 8) || __STRICT_ANSI__ -# define __attribute__(x) +# define __attribute__(x) /* empty */ # endif #endif