Browse Source

add missing include to quieten compiler

Waldemar Brodkorb 6 years ago
parent
commit
7bb52872a7
1 changed files with 1 additions and 2 deletions
  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);
 }
-