mirror of
https://github.com/encounter/newlib.git
synced 2026-03-30 11:31:09 -07:00
7 lines
89 B
C
7 lines
89 B
C
/*
|
|
* Version of environ for no OS.
|
|
*/
|
|
|
|
char *__env[1] = { 0 };
|
|
char **environ = __env;
|