Shipwright/soh/include/alloca.h

9 lines
122 B
C

#ifndef ALLOCA_H
#define ALLOCA_H
// void* alloca(u32);
//#define alloca __builtin_alloca
#define alloca malloc
#endif