From b10f525ba98ef5327efee531a9b6f40c9cbd8ffb Mon Sep 17 00:00:00 2001 From: Stas Degteff Date: Wed, 19 Oct 2005 17:26:47 +0000 Subject: [PATCH] Fix AMD64 build --- goldlib/gall/gdefs.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/goldlib/gall/gdefs.h b/goldlib/gall/gdefs.h index 05c471a..b894af0 100644 --- a/goldlib/gall/gdefs.h +++ b/goldlib/gall/gdefs.h @@ -113,12 +113,6 @@ typedef signed short int16_t; typedef unsigned short uint16_t; typedef signed long int32_t; typedef unsigned long uint32_t; -#endif - -typedef signed int sint; -typedef unsigned int uint; - -typedef uint8_t bit; typedef int8_t sbyte; typedef uint8_t byte; @@ -134,6 +128,12 @@ typedef int32_t sdword; typedef uint32_t dword; typedef int32_t slong; typedef uint32_t ulong; +#endif + +typedef uint8_t bit; + +typedef signed int sint; +typedef unsigned int uint; typedef uint32_t time32_t; /* 32-bit time_t type */