mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-08 08:35:20 +00:00
9 lines
162 B
C
9 lines
162 B
C
|
#define _GNU_SOURCE
|
||
|
#include <stdlib.h>
|
||
|
#include <sys/auxv.h>
|
||
|
|
||
|
char * secure_getenv(const char * name)
|
||
|
{
|
||
|
return getauxval(AT_SECURE) ? NULL : getenv(name);
|
||
|
}
|