Files
2018-02-18 14:39:59 +00:00

7 lines
89 B
C

/*
* Version of environ for no OS.
*/
char *__env[1] = { 0 };
char **environ = __env;