• R/O
  • HTTP
  • SSH
  • HTTPS

提交

标签
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

修订版7bb52872a7823743fca5a988c9f6e129cb3c559e (tree)
时间2018-03-02 04:17:57
作者Waldemar Brodkorb <wbx@ucli...>
CommiterWaldemar Brodkorb

Log Message

add missing include to quieten compiler

更改概述

差异

--- a/libc/stdlib/secure_getenv.c
+++ b/libc/stdlib/secure_getenv.c
@@ -1,8 +1,7 @@
1-
21 #include <stdlib.h>
2+#include <unistd.h>
33
44 char *secure_getenv(const char *name) {
55 if (issetugid()) return NULL;
66 return getenv(name);
77 }
8-