mm/include/libc/alloca.h

8 lines
95 B
C

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