whois42d/unsetenv_13.go
Jörg Thalheim c67dbb0ebd go1.3 compat
2016-02-02 09:25:29 +01:00

10 lines
95 B
Go

// +build !go1.4
package main
import "os"
func unsetenv(key string) {
os.Setenv(key, "")
}