Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
env
secure_getenv.c
pretty
plain
permalink
blame
history
•
8 lines
•
144 B
1
#define _GNU_SOURCE
2
#include <stdlib.h>
3
#include "libc.h"
4
5
char *secure_getenv(const char *name)
6
{
7
	return libc.secure ? NULL : getenv(name);
8
}