소스 검색

_hsearch_r.c: use stdlib.h instead of malloc.h for calloc

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Peter S. Mazinger 14 년 전
부모
커밋
f8942a121c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      libc/misc/search/_hsearch_r.c

+ 1 - 1
libc/misc/search/_hsearch_r.c

@@ -18,7 +18,7 @@
    02111-1307 USA.  */
 
 #include <errno.h>
-#include <malloc.h>
+#include <stdlib.h>
 #include <string.h>
 
 #include <search.h>