Shipwright/soh/include/alloca.h
2022-03-23 16:41:00 +09:00

9 lines
122 B
C

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