diff options
author | Jim Meyering <jim@meyering.net> | 2005-04-09 13:57:51 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-04-09 13:57:51 +0000 |
commit | 0eb83b6534e6885605e842815cec99a2cd9354ad (patch) | |
tree | 384e328ef99aa9ac64edc33fc3ab8c51bdd81797 /src | |
parent | 517ac833b090e50d473c6cee480b474eae59fa53 (diff) | |
download | coreutils-0eb83b6534e6885605e842815cec99a2cd9354ad.tar.xz |
Readability nit:
Change this:
# define __attribute__(x)
to this:
# define __attribute__(x) /* empty */
Diffstat (limited to 'src')
-rw-r--r-- | src/system.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/system.h b/src/system.h index ef121a503..c908f4a77 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 |