1 2 3 4 5 6 7 8
#define _GNU_SOURCE #include <stdlib.h> #include "libc.h" char *secure_getenv(const char *name) { return libc.secure ? NULL : getenv(name); }