/* LSB helper for alloca function. The function is just a compiler's hint. It's not available on every architecture, but it is inline funciton and even if it does cause harm, it's out of the scope of LSB. */ #ifndef _ALLOCA_H #define _ALLOCA_H 1 #ifdef __cplusplus extern "C" { #endif /* Remove any previous definitions. */ #undef alloca #define alloca(size) __builtin_alloca (size) #ifdef __cplusplus } // extern "C" #endif #endif /* alloca.h */