1
0
mirror of https://github.com/HarbourMasters/Shipwright.git synced 2024-12-23 08:38:52 -05:00
Shipwright/soh/include/alloca.h

9 lines
122 B
C
Raw Normal View History

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