Explorar el Código

getenv: allow overwriting of function

This fixes static compile issues of sudo, because sudo
uses it's own getenv implementation.
Waldemar Brodkorb hace 9 años
padre
commit
414ce5018d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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)