about summary refs log tree commit diff
path: root/include/alloca.h
blob: ae41090bd1926f3439a863dc61fdbdd40f9f50d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include <stdlib/alloca.h>

#undef	__alloca

/* Now define the internal interfaces.  */
extern __ptr_t __alloca __P ((size_t __size));

#ifdef	__GNUC__
# define __alloca(size)	__builtin_alloca (size)
#endif /* GCC.  */