修订版 | 7bb52872a7823743fca5a988c9f6e129cb3c559e (tree) |
---|---|
时间 | 2018-03-02 04:17:57 |
作者 | Waldemar Brodkorb <wbx@ucli...> |
Commiter | Waldemar Brodkorb |
add missing include to quieten compiler
@@ -1,8 +1,7 @@ | ||
1 | - | |
2 | 1 | #include <stdlib.h> |
2 | +#include <unistd.h> | |
3 | 3 | |
4 | 4 | char *secure_getenv(const char *name) { |
5 | 5 | if (issetugid()) return NULL; |
6 | 6 | return getenv(name); |
7 | 7 | } |
8 | - |