]> git.ipfire.org Git - thirdparty/glibc.git/blame - include/alloca.h
(printbody): Fix -CLMNab output.
[thirdparty/glibc.git] / include / alloca.h
CommitLineData
6796bc80
UD
1#ifndef _ALLOCA_H
2
28f540f4 3#include <stdlib/alloca.h>
bdbf022d
UD
4
5#undef __alloca
6
7/* Now define the internal interfaces. */
4d3a563f 8extern void *__alloca (size_t __size) __THROW;
bdbf022d
UD
9
10#ifdef __GNUC__
11# define __alloca(size) __builtin_alloca (size)
12#endif /* GCC. */
6796bc80
UD
13
14#endif