Mercurial > sdl-ios-xcode
diff src/stdlib/SDL_malloc.c @ 1465:8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Converted the disk audio driver to SDL_RWops for portability
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sat, 04 Mar 2006 08:24:35 +0000 |
parents | 84de7511f79f |
children | 782fd950bd46 c121d94672cb 95ecf165f113 |
line wrap: on
line diff
--- a/src/stdlib/SDL_malloc.c Sat Mar 04 05:13:03 2006 +0000 +++ b/src/stdlib/SDL_malloc.c Sat Mar 04 08:24:35 2006 +0000 @@ -27,17 +27,12 @@ #ifndef HAVE_MALLOC +#define LACKS_SYS_TYPES_H #define LACKS_STDIO_H #define LACKS_STRINGS_H #define LACKS_STRING_H #define LACKS_STDLIB_H #define ABORT -#define memset SDL_memset -#define memcpy SDL_memcpy -#define malloc SDL_malloc -#define calloc SDL_calloc -#define realloc SDL_realloc -#define free SDL_free /* This is a version (aka dlmalloc) of malloc/free/realloc written by @@ -496,6 +491,7 @@ #define LACKS_STRINGS_H #define LACKS_SYS_TYPES_H #define LACKS_ERRNO_H +#define LACKS_FCNTL_H #define MALLOC_FAILURE_ACTION #define MMAP_CLEARS 0 /* WINCE and some others apparently don't clear */ #endif /* WIN32 */ @@ -613,6 +609,13 @@ #define MALLINFO_FIELD_TYPE size_t #endif /* MALLINFO_FIELD_TYPE */ +#define memset SDL_memset +#define memcpy SDL_memcpy +#define malloc SDL_malloc +#define calloc SDL_calloc +#define realloc SDL_realloc +#define free SDL_free + /* mallopt tuning options. SVID/XPG defines four standard parameter numbers for mallopt, normally defined in malloc.h. None of these