mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 15:42:39 +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);
|
|
}
|