]> git.ipfire.org Git - thirdparty/glibc.git/blame - posix/environ.c
build-many-glibcs.py: Add openrisc hard float glibc variant
[thirdparty/glibc.git] / posix / environ.c
CommitLineData
5f9e57ba
RM
1/* This file just defines the `__environ' variable (and alias `environ'). */
2
3#include <unistd.h>
4#include <stddef.h>
5
6/* This must be initialized; we cannot have a weak alias into bss. */
7char **__environ = NULL;
8weak_alias (__environ, environ)
6432a779
RM
9
10/* The SVR4 ABI says `_environ' will be the name to use
11 in case the user overrides the weak alias `environ'. */
12weak_alias (__environ, _environ)