Files
photon/libc/stdlib/getenv.c

7 lines
120 B
C
Raw Normal View History

extern char *__crt_sys_getenv(const char *name);
char *getenv(const char *name)
{
return __crt_sys_getenv(name);
}