1 2 3 4 5 6 7 8 9
#ifndef ALLOCA_H #define ALLOCA_H #include "stddef.h" void* alloca(size_t); #define alloca(size) __builtin_alloca(size) #endif