From 0eb83b6534e6885605e842815cec99a2cd9354ad Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 9 Apr 2005 13:57:51 +0000 Subject: [PATCH] Readability nit: Change this: # define __attribute__(x) to this: # define __attribute__(x) /* empty */ --- src/system.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.47.3