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