diff include/SDL_config.h @ 1336:3692456e7b0f

Use SDL_ prefixed versions of C library functions. FIXME: Change #include <stdlib.h> to #include "SDL_stdlib.h" Change #include <string.h> to #include "SDL_string.h" Make sure nothing else broke because of this...
author Sam Lantinga <slouken@libsdl.org>
date Tue, 07 Feb 2006 06:59:48 +0000
parents 1cbaeee565b1
children d02b552e5304
line wrap: on
line diff
--- a/include/SDL_config.h	Mon Feb 06 17:28:04 2006 +0000
+++ b/include/SDL_config.h	Tue Feb 07 06:59:48 2006 +0000
@@ -54,16 +54,16 @@
 #endif /* !_WIN32_WCE */
 
 /* Features provided by SDL_stdlib.h */
-#if !defined(_WIN32) /* Don't use C runtime versions of these on Windows */
-#define HAVE_GETENV
-#define HAVE_PUTENV
-#endif
 #define HAVE_MALLOC
 #define HAVE_REALLOC
 #define HAVE_FREE
 #ifndef HAVE_ALLOCA
 #define HAVE_ALLOCA
 #endif
+#if !defined(_WIN32) /* Don't use C runtime versions of these on Windows */
+#define HAVE_GETENV
+#define HAVE_PUTENV
+#endif
 /*#define HAVE_QSORT*/
 
 /* Features provided by SDL_string.h */
@@ -74,6 +74,8 @@
 #define HAVE_STRLEN
 #define HAVE_STRCPY
 #define HAVE_STRNCPY
+#define HAVE_STRCAT
+#define HAVE_STRNCAT
 /*#define HAVE__STRREV*/
 /*#define HAVE__STRUPR*/
 /*#define HAVE__STRLWR*/
@@ -94,7 +96,7 @@
 /*#define HAVE_STRCASECMP*/
 #define HAVE_SSCANF
 /*#define HAVE_SNPRINTF*/
-#define HAVE_VSNPRINTF
+/*#define HAVE_VSNPRINTF*/
 
 #endif /* HAVE_LIBC */