Sign in
apache
/
doris
/
refs/heads/variant-sparse-merge
/
.
/
be
/
src
/
glibc-compatibility
/
musl
/
secure_getenv.c
blob: fbd9ef3bdcc385a2e1a44b8a8265f6284905b719 [
file
] [
log
] [
blame
]
#define
_GNU_SOURCE
#include
<stdlib.h>
#include
<sys/auxv.h>
char
*
secure_getenv
(
const
char
*
name
)
{
return
getauxval
(
AT_SECURE
)
?
NULL
:
getenv
(
name
);
}