summaryrefslogtreecommitdiff
path: root/posix/environ.c
blob: 3eee48e7eab834ad3d0d09af07d6ed3e56fd687d (plain)
1
2
3
4
5
6
7
8
/* This file just defines the `__environ' variable (and alias `environ').  */

#include <unistd.h>
#include <stddef.h>

/* This must be initialized; we cannot have a weak alias into bss.  */
char **__environ = NULL;
weak_alias (__environ, environ)