2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-20 12:59:12 +00:00
Files
metaforce/NESEmulator/malloc.h
Jack Andersen 5e8f4d4f12 Windows fixes
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