7 lines
120 B
C
7 lines
120 B
C
extern char *__crt_sys_getenv(const char *name);
|
|
|
|
char *getenv(const char *name)
|
|
{
|
|
return __crt_sys_getenv(name);
|
|
}
|