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. --HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401627
This commit is contained in:
parent
0478af81b2
commit
8445eb17d1
1 changed files with 3 additions and 3 deletions
|
@ -31,9 +31,9 @@ typedef signed char int8_t;
|
||||||
typedef unsigned char uint8_t;
|
typedef unsigned char uint8_t;
|
||||||
typedef signed short int16_t;
|
typedef signed short int16_t;
|
||||||
typedef unsigned short uint16_t;
|
typedef unsigned short uint16_t;
|
||||||
typedef signed int int32_t;
|
typedef signed long int32_t;
|
||||||
typedef unsigned int uint32_t;
|
typedef unsigned long uint32_t;
|
||||||
typedef unsigned int uintptr_t;
|
typedef unsigned long uintptr_t;
|
||||||
|
|
||||||
/* Useful headers */
|
/* Useful headers */
|
||||||
#define HAVE_STDIO_H 1
|
#define HAVE_STDIO_H 1
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue