Update.
[glibc.git] / include / alloca.h
blobae41090bd1926f3439a863dc61fdbdd40f9f50d1
1 #include <stdlib/alloca.h>
3 #undef __alloca
5 /* Now define the internal interfaces. */
6 extern __ptr_t __alloca __P ((size_t __size));
8 #ifdef __GNUC__
9 # define __alloca(size) __builtin_alloca (size)
10 #endif /* GCC. */