Browse Source

getenv: allow overwriting of function

This fixes static compile issues of sudo, because sudo
uses it's own getenv implementation.
Waldemar Brodkorb 9 năm trước cách đây
mục cha
commit
414ce5018d
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      libc/stdlib/getenv.c

+ 1 - 1
libc/stdlib/getenv.c

@@ -27,4 +27,4 @@ char *getenv(const char *var)
     }
     return NULL;
 }
-libc_hidden_def(getenv)
+libc_hidden_weak(getenv)