diff include/SDL_config_minimal.h @ 3219:b91354fa65a2

Don't redefine types if HAVE_STDINT_H is defined
author Sam Lantinga <slouken@libsdl.org>
date Sun, 02 Aug 2009 12:45:20 +0000
parents 99210400e8b9
children 6290f9bd097d
line wrap: on
line diff
--- a/include/SDL_config_minimal.h	Thu Jul 30 14:53:57 2009 +0000
+++ b/include/SDL_config_minimal.h	Sun Aug 02 12:45:20 2009 +0000
@@ -29,6 +29,7 @@
 
 #include <stdarg.h>
 
+#ifndef HAVE_STDINT_H
 typedef signed char int8_t;
 typedef unsigned char uint8_t;
 typedef signed short int16_t;
@@ -37,6 +38,7 @@
 typedef unsigned int uint32_t;
 typedef unsigned int size_t;
 typedef unsigned long uintptr_t;
+#endif /* !HAVE_STDINT_H */
 
 /* Enable the dummy audio driver (src/audio/dummy/\*.c) */
 #define SDL_AUDIO_DRIVER_DUMMY	1