environ.c 149 B

12345678910
  1. /*
  2. * environ.c - define the variable environ
  3. */
  4. /* $Id$ */
  5. #include <unistd.h>
  6. /* Contains storage for the environ variable. */
  7. char** environ;