2 * Copyright 2003-2012 Haiku, Inc. All Rights Reserved.
3 * Distributed under the terms of the MIT License.
19 extern void * __alloca (size_t __size
);
20 extern void * alloca (size_t __size
);
26 #define __alloca(size) __builtin_alloca (size)
27 #define alloca(size) __alloca (size)
29 #endif /* _ALLOCA_H */