X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=include%2Falloca.h;h=f61b817a54e192a1e32440be48522958c05f1454;hp=ac78e46038d45896e8942009884693a667539723;hb=b4a07bb469ad5a81ee003b621c362d2e7be38159;hpb=0b44a0315b47dd8eced9f3b7f31580cf14bbfc01 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