Sign in
cobalt
/
cobalt
/
97b64f26fb12c9eab352139c26f0b01d1cb6d0b9
/
.
/
third_party
/
musl
/
include
/
alloca.h
blob: d2e6f1c681eebba9b016df23d2e2fb7a54f5942a [
file
] [
log
] [
blame
]
#ifndef
_ALLOCA_H
#define
_ALLOCA_H
#ifdef
__cplusplus
extern
"C"
{
#endif
#define
__NEED_size_t
#include
<bits/alltypes.h>
void
*
alloca
(
size_t
);
#ifdef
__GNUC__
#define
alloca __builtin_alloca
#endif
#ifdef
__cplusplus
}
#endif
#endif