comparison include/SDL_types.h @ 166:39877400bd1e

Fixed Solaris nitpicks (thanks Mattias!)
author Sam Lantinga <slouken@libsdl.org>
date Tue, 04 Sep 2001 22:48:09 +0000
parents 74212992fb08
children 83018110dce8
comparison
equal deleted inserted replaced
165:6a4e09bbbbc0 166:39877400bd1e
45 typedef unsigned int Uint32; 45 typedef unsigned int Uint32;
46 typedef signed int Sint32; 46 typedef signed int Sint32;
47 47
48 /* Figure out how to support 64-bit datatypes */ 48 /* Figure out how to support 64-bit datatypes */
49 #if !defined(__STRICT_ANSI__) 49 #if !defined(__STRICT_ANSI__)
50 #if defined(__GNUC__) || defined(__MWERKS__) /* MJS */ 50 #if defined(__GNUC__) || defined(__MWERKS__) || defined(__SUNPRO_C)
51 #define SDL_HAS_64BIT_TYPE long long 51 #define SDL_HAS_64BIT_TYPE long long
52 #elif defined(_MSC_VER) /* VC++ */ 52 #elif defined(_MSC_VER) /* VC++ */
53 #define SDL_HAS_64BIT_TYPE __int64 53 #define SDL_HAS_64BIT_TYPE __int64
54 #endif 54 #endif
55 #endif /* !__STRICT_ANSI__ */ 55 #endif /* !__STRICT_ANSI__ */