repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Update.
[glibc.git]
/
include
/
alloca.h
blob
3a480f8e24a8c1d589cc00a85699584d3b9839c8
1
#ifndef _ALLOCA_H
2
3
#include <stdlib/alloca.h>
4
5
#undef __alloca
6
7
/* Now define the internal interfaces. */
8
extern
void
*
__alloca
(
size_t
__size
);
9
10
#ifdef __GNUC__
11
# define __alloca(size) __builtin_alloca (size)
12
#endif
/* GCC. */
13
14
#endif