From: Rich Felker Date: Mon, 9 Apr 2012 20:22:05 +0000 (-0400) Subject: fix alloca issue in stdlib.h too X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=3be616c1df7ee176b5e00b9f493136ca7385ec46 fix alloca issue in stdlib.h too I forgot _GNU_SOURCE also has it declared here... --- diff --git a/include/stdlib.h b/include/stdlib.h index 9c8a1182..ed512f43 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -128,7 +128,7 @@ void lcong48 (unsigned short [7]); #endif #if defined(_GNU_SOURCE) -void *alloca(size_t); +#include char *mktemp (char *); void *valloc (size_t); void *memalign(size_t, size_t);