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)