Update.
[glibc.git] / include / alloca.h
blob3a480f8e24a8c1d589cc00a85699584d3b9839c8
1 #ifndef _ALLOCA_H
3 #include <stdlib/alloca.h>
5 #undef __alloca
7 /* Now define the internal interfaces. */
8 extern void *__alloca (size_t __size);
10 #ifdef __GNUC__
11 # define __alloca(size) __builtin_alloca (size)
12 #endif /* GCC. */
14 #endif