00001 #ifndef _ALLOCA_H_ 00002 #define _ALLOCA_H_ 00003 00004 #include <nlibc.h> 00005 #include <stddef.h> 00006 00014 //-------------------------------------------------------------------------------- 00058 #undef alloca 00059 #define alloca(SIZE) __builtin_alloca(SIZE) 00060 extern void * alloca( size_t ); 00061 00062 #endif // _ALLOCA_H_