mirror of https://github.com/AxioDL/metaforce.git
11 lines
187 B
C
11 lines
187 B
C
|
#ifndef URDE_NESEMULATOR_MALLOC_H
|
||
|
#define URDE_NESEMULATOR_MALLOC_H
|
||
|
|
||
|
#ifdef __APPLE__
|
||
|
#include <stdlib.h>
|
||
|
#else
|
||
|
#include <../include/malloc.h>
|
||
|
#endif
|
||
|
|
||
|
#endif // URDE_NESEMULATOR_MALLOC_H
|