X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=include%2Falloca.h;h=f61b817a54e192a1e32440be48522958c05f1454;hb=25501c1079756c9b438842da649585c2a6983c24;hp=ac78e46038d45896e8942009884693a667539723;hpb=0b44a0315b47dd8eced9f3b7f31580cf14bbfc01;p=musl diff --git a/include/alloca.h b/include/alloca.h index ac78e460..f61b817a 100644 --- a/include/alloca.h +++ b/include/alloca.h @@ -1,9 +1,17 @@ #ifndef _ALLOCA_H #define _ALLOCA_H +#ifdef __cplusplus +extern "C" { +#endif + #define __NEED_size_t #include void *alloca(size_t); +#ifdef __cplusplus +} +#endif + #endif