mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-05 02:39:41 +01:00
19 lines
287 B
C
19 lines
287 B
C
|
#include <SDL_stdinc.h>
|
||
|
|
||
|
// Handle third-party dependencies' needs here
|
||
|
|
||
|
void* lodepng_malloc(size_t size)
|
||
|
{
|
||
|
return SDL_malloc(size);
|
||
|
}
|
||
|
|
||
|
void* lodepng_realloc(void* ptr, size_t new_size)
|
||
|
{
|
||
|
return SDL_realloc(ptr, new_size);
|
||
|
}
|
||
|
|
||
|
void lodepng_free(void* ptr)
|
||
|
{
|
||
|
SDL_free(ptr);
|
||
|
}
|