9 lines
122 B
C
9 lines
122 B
C
#ifndef ALLOCA_H
|
|
#define ALLOCA_H
|
|
|
|
// void* alloca(u32);
|
|
//#define alloca __builtin_alloca
|
|
#define alloca malloc
|
|
|
|
#endif
|