1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2024-11-11 03:39:59 +00:00
oot/include/alloca.h

8 lines
99 B
C
Raw Normal View History

#ifndef _ALLOCA_H_
#define _ALLOCA_H_
void* alloca(u32);
#define alloca __builtin_alloca
#endif