Explorar o código

add missing include to quieten compiler

Waldemar Brodkorb %!s(int64=6) %!d(string=hai) anos
pai
achega
7bb52872a7
Modificáronse 1 ficheiros con 1 adicións e 2 borrados
  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);
 }
-