From 680608fe188548a22575549fc9347ab19e684bde Mon Sep 17 00:00:00 2001 From: "Markus F.X.J. Oberhumer" Date: Mon, 13 Mar 2006 11:04:32 +0000 Subject: [PATCH] Portability fix. committer: mfx 1142247872 +0000 --- src/stub/linux.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stub/linux.hh b/src/stub/linux.hh index f0a7470d..08682d5c 100644 --- a/src/stub/linux.hh +++ b/src/stub/linux.hh @@ -43,7 +43,7 @@ typedef unsigned char uint8_t; typedef unsigned short uint16_t; typedef int int32_t; typedef unsigned uint32_t; -#if defined(__GNUC__) +#if defined(__GNUC__) && (__GNUC__ >= 3) __extension__ typedef long long int64_t; __extension__ typedef unsigned long long uint64_t; #elif defined(_WIN32)