Commit 8445eb17 authored by Sam Lantinga's avatar Sam Lantinga

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
parent 0478af81
...@@ -31,9 +31,9 @@ typedef signed char int8_t; ...@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment