mirror of
https://github.com/love2d/love.git
synced 2026-08-16 00:02:12 +02:00
e5adc4e5fd
Resolves issue #25.
18 lines
285 B
C
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
|