1 2 3 4 5 6 7
#ifndef LIBC_ALLOCA_H #define LIBC_ALLOCA_H void* alloca(size_t); #define alloca(size) __builtin_alloca(size) #endif