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
(__pthread_trylock): Define inline. (__pthread_lock): Add extra parameter to declarat...
[glibc.git]
/
include
/
alloca.h
blob
4dcddb6ae1613f53369a5b85f28e8cfadbd3f813
1
#ifndef _ALLOCA_H
2
3
#include <stdlib/alloca.h>
4
5
#undef __alloca
6
7
/* Now define the internal interfaces. */
8
extern
__ptr_t __alloca
__P
((
size_t
__size
));
9
10
#ifdef __GNUC__
11
# define __alloca(size) __builtin_alloca (size)
12
#endif
/* GCC. */
13
14
#endif