Sign in
cobalt
/
cobalt.git
/
193dc3d54bfe1fcc7a4d95650f8e9f2c8d9e7d1e
/
.
/
src
/
third_party
/
musl
/
include
/
alloca.h
blob: d2e6f1c681eebba9b016df23d2e2fb7a54f5942a [
file
]
#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