Eric Andersen 24 anni fa
parent
commit
59b2e620ae
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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;
 }