Blame posix/environ.c

Packit Service 82fcde
/* This file just defines the `__environ' variable (and alias `environ').  */
Packit Service 82fcde
Packit Service 82fcde
#include <unistd.h>
Packit Service 82fcde
#include <stddef.h>
Packit Service 82fcde
Packit Service 82fcde
/* This must be initialized; we cannot have a weak alias into bss.  */
Packit Service 82fcde
char **__environ = NULL;
Packit Service 82fcde
weak_alias (__environ, environ)
Packit Service 82fcde
Packit Service 82fcde
/* The SVR4 ABI says `_environ' will be the name to use
Packit Service 82fcde
   in case the user overrides the weak alias `environ'.  */
Packit Service 82fcde
weak_alias (__environ, _environ)