Sign in
googlers
/
maze
/
klibc
/
45e09deb6a0a4fcb3a56efb7e18807b2800e358f
/
.
/
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 */