Update.
[glibc.git] / include / alloca.h
blobcb0b1a5587f460f5e0d64e4f350a0f6d2e3b31af
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) __THROW;
10 #ifdef __GNUC__
11 # define __alloca(size) __builtin_alloca (size)
12 #endif /* GCC. */
14 #endif