mirror of https://git.musl-libc.org/git/musl
committed by
Rich Felker
2 changed files with 9 additions and 0 deletions
@ -0,0 +1,8 @@ |
|||
#define _GNU_SOURCE |
|||
#include <stdlib.h> |
|||
#include "libc.h" |
|||
|
|||
char *secure_getenv(const char *name) |
|||
{ |
|||
return libc.secure ? NULL : getenv(name); |
|||
} |
|||
Loading…
Reference in new issue