Mercurial > sdl-ios-xcode
comparison include/SDL_config_macos.h @ 1620:2fe5319df0e1
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.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Wed, 12 Apr 2006 14:38:47 +0000 |
parents | d951a5afaf07 |
children | e49147870aac 00ea6cf49a4e |
comparison
equal
deleted
inserted
replaced
1619:e79e4c5e531b | 1620:2fe5319df0e1 |
---|---|
29 | 29 |
30 typedef signed char int8_t; | 30 typedef signed char int8_t; |
31 typedef unsigned char uint8_t; | 31 typedef unsigned char uint8_t; |
32 typedef signed short int16_t; | 32 typedef signed short int16_t; |
33 typedef unsigned short uint16_t; | 33 typedef unsigned short uint16_t; |
34 typedef signed int int32_t; | 34 typedef signed long int32_t; |
35 typedef unsigned int uint32_t; | 35 typedef unsigned long uint32_t; |
36 typedef unsigned int uintptr_t; | 36 typedef unsigned long uintptr_t; |
37 | 37 |
38 /* Useful headers */ | 38 /* Useful headers */ |
39 #define HAVE_STDIO_H 1 | 39 #define HAVE_STDIO_H 1 |
40 #define STDC_HEADERS 1 | 40 #define STDC_HEADERS 1 |
41 #define HAVE_STRING_H 1 | 41 #define HAVE_STRING_H 1 |