]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Readability nit:
authorJim Meyering <jim@meyering.net>
Sat, 9 Apr 2005 13:57:51 +0000 (13:57 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 9 Apr 2005 13:57:51 +0000 (13:57 +0000)
  Change this:
  #  define __attribute__(x)
  to this:
  #  define __attribute__(x) /* empty */

src/system.h

index ef121a503947c8ccde8ef2e01eb2f271a5d5644b..c908f4a7775fd13cd8988226dec58cc04b6402f3 100644 (file)
@@ -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