1 /* alloca.h - The dreaded alloca() function.
13 /* The compiler recognizes this special keyword, and inlines the code. */
14 #define alloca(size) __builtin_alloca(size)
18 #if __ACK__ || __CCC__
20 _PROTOTYPE(void *alloca
, (size_t _size
) );
22 #endif /* __ACK__ || __CCC__ */
24 #endif /* _ALLOCA_H */