From 3be616c1df7ee176b5e00b9f493136ca7385ec46 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Mon, 9 Apr 2012 16:22:05 -0400 Subject: fix alloca issue in stdlib.h too I forgot _GNU_SOURCE also has it declared here... --- include/stdlib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') 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); -- cgit v1.2.1