11 lines
149 B
C
11 lines
149 B
C
/*
|
|
* environ.c - define the variable environ
|
|
*/
|
|
/* $Id$ */
|
|
|
|
#include <unistd.h>
|
|
|
|
/* Contains storage for the environ variable. */
|
|
|
|
char** environ;
|