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