From: Rich Felker Date: Mon, 12 Sep 2011 02:43:57 +0000 (-0400) Subject: declare alloca in stdlib.h when _GNU_SOURCE is defined X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=d4045a1683d402dd4e53b3ae388d8794d7238c7e declare alloca in stdlib.h when _GNU_SOURCE is defined --- diff --git a/include/stdlib.h b/include/stdlib.h index 023f6e78..43225dd4 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -128,6 +128,7 @@ void lcong48 (unsigned short [7]); #endif #if defined(_GNU_SOURCE) +void *alloca(size_t); char *mktemp (char *); void *valloc (size_t); void *memalign(size_t, size_t);