mirror of
https://github.com/yawut/SDL.git
synced 2026-04-22 16:47:18 -05:00
From Anders F Bjorklund:
The current definition of int32_t, uint32_t, uintptr_t doesn't match what the Mac system headers already have... Since it's an old 16/32 bit platform, the system headers expect the types to use "long" and not "int" like they do.
This commit is contained in:
parent
150575a5cf
commit
80c113cde7
|
|
@ -31,9 +31,9 @@ typedef signed char int8_t;
|
|||
typedef unsigned char uint8_t;
|
||||
typedef signed short int16_t;
|
||||
typedef unsigned short uint16_t;
|
||||
typedef signed int int32_t;
|
||||
typedef unsigned int uint32_t;
|
||||
typedef unsigned int uintptr_t;
|
||||
typedef signed long int32_t;
|
||||
typedef unsigned long uint32_t;
|
||||
typedef unsigned long uintptr_t;
|
||||
|
||||
/* Useful headers */
|
||||
#define HAVE_STDIO_H 1
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user