|
@@ -1,13 +1,13 @@ |
|
|
#include "IZ_stdlib.h" |
|
|
#include "IZ_stdlib.h" |
|
|
|
|
|
|
|
|
void* IZ_malloc(size_t size) { |
|
|
void* IZ_malloc(size_t size) { |
|
|
return malloc(size); |
|
|
|
|
|
|
|
|
return SDL_malloc(size); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void* IZ_calloc(unsigned int count, size_t size) { |
|
|
void* IZ_calloc(unsigned int count, size_t size) { |
|
|
return calloc(count, size); |
|
|
|
|
|
|
|
|
return SDL_calloc(count, size); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void IZ_free(void* p) { |
|
|
void IZ_free(void* p) { |
|
|
free(p); |
|
|
|
|
|
|
|
|
SDL_free(p); |
|
|
} |
|
|
} |