summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-04-09 16:22:05 -0400
committerRich Felker <dalias@aerifal.cx>2012-04-09 16:22:05 -0400
commit3be616c1df7ee176b5e00b9f493136ca7385ec46 (patch)
tree8eaeb626b6e75cec5dbd563df2c62b0e712f9300 /include
parentd71d0805f9ad4010529bb94092a2e378b4edac9a (diff)
downloadmusl-3be616c1df7ee176b5e00b9f493136ca7385ec46.tar.gz
fix alloca issue in stdlib.h too
I forgot _GNU_SOURCE also has it declared here...
Diffstat (limited to 'include')
-rw-r--r--include/stdlib.h2
1 files changed, 1 insertions, 1 deletions
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 <alloca.h>
char *mktemp (char *);
void *valloc (size_t);
void *memalign(size_t, size_t);