소스 검색

fix alloca issue in stdlib.h too

I forgot _GNU_SOURCE also has it declared here...
Rich Felker 13 년 전
부모
커밋
3be616c1df
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      include/stdlib.h

+ 1 - 1
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);