Don't redefine types if HAVE_STDINT_H is defined

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403717
This commit is contained in:
Sam Lantinga 2009-08-02 12:45:20 +00:00
parent 8a68fef797
commit 72e444bb08
6 changed files with 14 additions and 1 deletions

View file

@ -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 signed int int32_t;
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