Files
love/src/libraries/Wuff/wuff_memory.c
T
2013-10-23 16:02:06 -03:00

18 lines
285 B
C

#include <stdlib.h>
#include "wuff_config.h"
/* Default memory allocators. */
/* They can be overridden with custom functions at build time. */
#ifndef WUFF_MEMALLOC_OVERRIDE
void * wuff_alloc(size_t size)
{
return malloc(size);
}
void wuff_free(void * mem)
{
free(mem);
}
#endif