blob: cb0b1a5587f460f5e0d64e4f350a0f6d2e3b31af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _ALLOCA_H
#include <stdlib/alloca.h>
#undef __alloca
/* Now define the internal interfaces. */
extern void *__alloca (size_t __size) __THROW;
#ifdef __GNUC__
# define __alloca(size) __builtin_alloca (size)
#endif /* GCC. */
#endif
|