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

10 lines
92 B
Go

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