Sign in
googlers
/
maze
/
klibc
/
72a6e871639c36b949c6aa3d8429100e63d20796
/
.
/
usr
/
include
/
alloca.h
blob: 91ef4c0d7792cf868981647555e3c65c45953dda [
file
] [
log
] [
blame
]
/*
* alloca.h
*
* Just call the builtin alloca() function
*/
#ifndef
_ALLOCA_H
#define
_ALLOCA_H
#define
alloca
(
size
)
__builtin_alloca
(
size
)
#endif
/* _ALLOCA_H */