mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-01-10 19:09:45 +01:00
c17ea40866
So there were actually only two instances of C99-style end-of-line comments in C files - and technically one of them was just a C file including MakeAndPlay.h.
18 lines
290 B
C
18 lines
290 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);
|
|
}
|