diff options
author | Damien Miller <djm@mindrot.org> | 1999-12-15 16:33:33 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 1999-12-15 16:33:33 +1100 |
commit | b6359ba4b84d8982440f57a374b594c85284a813 (patch) | |
tree | 0b3a5d82077a3413228ddfa222d84a398849f5c1 | |
parent | 864ea59da63b4941575e95f7dbbb361f88ee53ef (diff) |
Fix __attribute__ breakage
-rw-r--r-- | acconfig.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/acconfig.h b/acconfig.h index 6be7bddb2..35d4fb4bb 100644 --- a/acconfig.h +++ b/acconfig.h | |||
@@ -261,8 +261,6 @@ enum | |||
261 | # define __P(x) x | 261 | # define __P(x) x |
262 | #endif | 262 | #endif |
263 | 263 | ||
264 | #if defined(__GNUC__) && (__GNUC__ < 2) | 264 | #if !defined(__GNUC__) || (__GNUC__ < 2) |
265 | # define __attribute__(x) | 265 | # define __attribute__(x) |
266 | #else | 266 | #endif /* !defined(__GNUC__) || (__GNUC__ < 2) */ |
267 | # define __attribute__(x) | ||
268 | #endif /* defined(__GNUC__) && (__GNUC__ < 2) */ | ||