diff options
Diffstat (limited to 'posix/environ.c')
-rw-r--r-- | posix/environ.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/posix/environ.c b/posix/environ.c deleted file mode 100644 index a0ed0d80ea..0000000000 --- a/posix/environ.c +++ /dev/null @@ -1,12 +0,0 @@ -/* 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) |