Welcome to mirror list, hosted at ThFree Co, Russian Federation.

environ.c « libnosys « libgloss - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b58250634c9e0399e0670e6ecdce70e8728677a1 (plain)
1
2
3
4
5
6
/*
 * Version of environ for no OS.
 */

char *__env[1] = { 0 }; 
char **environ = __env;