summaryrefslogtreecommitdiff
path: root/libc/stdlib/setenv.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-06-01 12:07:20 +0000
committerEric Andersen <andersen@codepoet.org>2002-06-01 12:07:20 +0000
commit59b2e620ae7f4f5e235b38f7690c86202ecbd636 (patch)
treed81d40e27b85711c2bf1e76e137af47bcdd418c0 /libc/stdlib/setenv.c
parent81bd44001682621ea35a78a9002114286267a7e4 (diff)
Doh!
Diffstat (limited to 'libc/stdlib/setenv.c')
-rw-r--r--libc/stdlib/setenv.c2
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;
}