Files
2018-05-27 20:17:23 +01:00

7 lines
89 B
C

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