# HG changeset patch # User Sam Lantinga # Date 1147537859 0 # Node ID 3aecc9072edd50af6caf14b72cbd6ce88ebcc36e # Parent b7e15d9bf1cb5679bbe7501368e34ad60c586a43 Hey, whaddy know! MacOS Classic has 64-bit types! diff -r b7e15d9bf1cb -r 3aecc9072edd include/SDL_config_macos.h --- a/include/SDL_config_macos.h Sat May 13 05:21:59 2006 +0000 +++ b/include/SDL_config_macos.h Sat May 13 16:30:59 2006 +0000 @@ -27,14 +27,20 @@ /* This is a set of defines to configure the SDL features */ -typedef signed char int8_t; -typedef unsigned char uint8_t; -typedef signed short int16_t; -typedef unsigned short uint16_t; -typedef signed long int32_t; -typedef unsigned long uint32_t; +#include + +typedef SInt8 int8_t; +typedef UInt8 uint8_t; +typedef SInt16 int16_t; +typedef UInt16 uint16_t; +typedef SInt32 int32_t; +typedef UInt32 uint32_t; +typedef SInt64 int64_t; +typedef UInt64 uint64_t; typedef unsigned long uintptr_t; +#define SDL_HAS_64BIT_TYPE 1 + /* Useful headers */ #define HAVE_STDIO_H 1 #define STDC_HEADERS 1