mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-17 10:30:20 +00:00
9 lines
248 B
C
9 lines
248 B
C
|
/* 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)
|