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