Started the process of improving configure support, and merging C types

and library support into a single header.

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401357
This commit is contained in:
Sam Lantinga 2006-02-09 09:07:13 +00:00
parent 43c632905d
commit 0e9a85e9de
16 changed files with 155 additions and 643 deletions

View file

@ -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 */