Fixed including stdint.h with gcc on Win32

This commit is contained in:
Sam Lantinga 2006-06-25 17:12:08 +00:00
parent 1d95e86391
commit 7e37690ca4

View File

@ -44,6 +44,8 @@ typedef unsigned int uintptr_t;
#endif
#define _UINTPTR_T_DEFINED
#endif
#elif defined(__GNUC__)
#define HAVE_STDINT_H 1
#else
typedef signed char int8_t;
typedef unsigned char uint8_t;