diff --git a/ice-9/boot-9.scm b/ice-9/boot-9.scm index 36fc11470..7dfa381aa 100644 --- a/ice-9/boot-9.scm +++ b/ice-9/boot-9.scm @@ -599,6 +599,10 @@ (putenv (string-append name "=" value)) (putenv name))) +(define (unsetenv name) + "Remove the entry for NAME from the environment." + (putenv name)) + ;;; {Load Paths} ;;;