From bc0c39f85de6b55e431c13c85522abd2d2bccf7d Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Thu, 31 Aug 2006 17:39:47 +0000 Subject: 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 --- src/common/compat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/compat.h b/src/common/compat.h index 8511cb2cdf..a4f52040a0 100644 --- a/src/common/compat.h +++ b/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)) -- cgit v1.2.3-54-g00ecf