Portability fix.

committer: mfx <mfx> 1142247872 +0000
This commit is contained in:
Markus F.X.J. Oberhumer 2006-03-13 11:04:32 +00:00
parent ec6acbc602
commit 680608fe18
1 changed files with 1 additions and 1 deletions

View File

@ -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)