1/* 2 * alloca.h 3 * 4 * Just call the builtin alloca() function 5 */ 6 7#ifndef _ALLOCA_H 8#define _ALLOCA_H 9 10#define alloca(size) __builtin_alloca(size) 11 12#endif /* _ALLOCA_H */ 13