Browse Source

r8691@Kushana: nickm | 2006-08-31 13:30:46 -0400
Fix bug 327 (part 1): Use correct macro to test for GCC 3 or later.


svn:r8309

Nick Mathewson 18 years ago
parent
commit
bc0c39f85d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/common/compat.h

+ 1 - 1
src/common/compat.h

@@ -90,7 +90,7 @@ extern INLINE double U64_TO_DBL(uint64_t x) {
 #endif
 
 /* GCC has several useful attributes. */
-#ifdef __GNUC__ && __GNUC_MAJOR__ >= 3
+#if defined(__GNUC__) && __GNUC__ >= 3
 #define ATTR_NORETURN __attribute__((noreturn))
 #define ATTR_PURE __attribute__((pure))
 #define ATTR_MALLOC __attribute__((malloc))