소스 검색

add missing include to quieten compiler

Waldemar Brodkorb 6 년 전
부모
커밋
7bb52872a7
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      libc/stdlib/secure_getenv.c

+ 1 - 2
libc/stdlib/secure_getenv.c

@@ -1,8 +1,7 @@
-
 #include <stdlib.h>
+#include <unistd.h>
 
 char *secure_getenv(const char *name) {
 	if (issetugid()) return NULL;
 	return getenv(name);
 }
-