1 2 3 4 5 6 7 8 9 10 11 12 13
/* libc/sys/linux/include/alloca.h - Allocate memory on stack */ /* Written 2000 by Werner Almesberger */ #ifndef _NEWLIB_ALLOCA_H #define _NEWLIB_ALLOCA_H /* Simple, since we know that we use gcc */ #define alloca(size) __builtin_alloca(size) #endif