libc/libgloss/libnosys/environ.c

7 lines
91 B
C
Raw Normal View History

2000-03-17 23:48:54 +01:00
/*
* Version of environ for no OS.
*/
char *__env[1] = { 0 };
char **environ = __env;