2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-06-09 21:13:28 +00:00
2018-12-07 15:49:15 -10:00

16 lines
339 B
C

#ifndef URDE_NESEMULATOR_MALLOC_H
#define URDE_NESEMULATOR_MALLOC_H
#ifdef __APPLE__
#include <stdlib.h>
#elif _WIN32
#include <../ucrt/malloc.h>
#else
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Winclude-next-absolute-path"
#include_next <malloc.h>
#pragma GCC diagnostic pop
#endif
#endif // URDE_NESEMULATOR_MALLOC_H