newlib-cygwin/libgloss/libnosys/environ.c

7 lines
91 B
C
Raw Normal View History

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