Eric Andersen 23 years ago
parent
commit
59b2e620ae
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libc/stdlib/setenv.c

+ 1 - 1
libc/stdlib/setenv.c

@@ -194,7 +194,7 @@ int putenv (char *string)
 	free(name);
 	return(result);
     }
-    __unsetenv (string);
+    unsetenv (string);
     return 0;
 }