metaforce/NESEmulator/malloc.h

13 lines
222 B
C
Raw Normal View History

2018-02-01 15:19:34 -08:00
#ifndef URDE_NESEMULATOR_MALLOC_H
#define URDE_NESEMULATOR_MALLOC_H
#ifdef __APPLE__
#include <stdlib.h>
2018-02-02 19:08:10 -08:00
#elif _WIN32
#include <../ucrt/malloc.h>
2018-02-01 15:19:34 -08:00
#else
2018-02-02 19:08:10 -08:00
#include_next <malloc.h>
2018-02-01 15:19:34 -08:00
#endif
#endif // URDE_NESEMULATOR_MALLOC_H