2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-06-09 18:33:29 +00:00
2018-02-02 17:08:10 -10:00

13 lines
222 B
C

#ifndef URDE_NESEMULATOR_MALLOC_H
#define URDE_NESEMULATOR_MALLOC_H
#ifdef __APPLE__
#include <stdlib.h>
#elif _WIN32
#include <../ucrt/malloc.h>
#else
#include_next <malloc.h>
#endif
#endif // URDE_NESEMULATOR_MALLOC_H