diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-04-09 16:22:05 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-04-09 16:22:05 -0400 |
commit | 3be616c1df7ee176b5e00b9f493136ca7385ec46 (patch) | |
tree | 8eaeb626b6e75cec5dbd563df2c62b0e712f9300 /include | |
parent | d71d0805f9ad4010529bb94092a2e378b4edac9a (diff) | |
download | musl-3be616c1df7ee176b5e00b9f493136ca7385ec46.tar.gz musl-3be616c1df7ee176b5e00b9f493136ca7385ec46.tar.xz musl-3be616c1df7ee176b5e00b9f493136ca7385ec46.zip |
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.h | 2 |
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); |