diff options
Diffstat (limited to 'libc')
-rw-r--r-- | libc/stdlib/setenv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/stdlib/setenv.c b/libc/stdlib/setenv.c index a7c2cb3f7..7f6a1501c 100644 --- a/libc/stdlib/setenv.c +++ b/libc/stdlib/setenv.c @@ -194,7 +194,7 @@ int putenv (char *string) free(name); return(result); } - __unsetenv (string); + unsetenv (string); return 0; } |