Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
15c7af3e21e1e402067f9c2a7c8d3094ddc7f54f
/
.
/
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