blob: a0ed0d80eab207f8d0b4b5b01dfaa653c1e4cefd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* 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)
/* The SVR4 ABI says `_environ' will be the name to use
in case the user overrides the weak alias `environ'. */
weak_alias (__environ, _environ)
|