diff include/SDL_config.h.minimal @ 1353:7ba544e2888d

Started the process of improving configure support, and merging C types and library support into a single header.
author Sam Lantinga <slouken@libsdl.org>
date Thu, 09 Feb 2006 09:07:13 +0000
parents d02b552e5304
children d910939febfa
line wrap: on
line diff
--- a/include/SDL_config.h.minimal	Thu Feb 09 05:46:55 2006 +0000
+++ b/include/SDL_config.h.minimal	Thu Feb 09 09:07:13 2006 +0000
@@ -25,6 +25,15 @@
 
 /* This is the minimal configuration that can be used to build SDL */
 
-#define HAVE_STDARG_H 1
+#include <stdarg.h>
+
+typedef signed char int8_t;
+typedef unsigned char uint8_t;
+typedef signed short int16_t;
+typedef unsigned short uint16_t;
+typedef signed int int32_t;
+typedef unsigned int uint32_t;
+typedef unsigned int size_t;
+typedef unsigned long uintptr_t;
 
 #endif /* _SDL_config_h */