summaryrefslogtreecommitdiff
path: root/src/env/secure_getenv.c
blob: 72322f811baac1ddabd424a0ddf804c4ff41170f (plain) (blame)
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);
}