10 lines
95 B
Go
10 lines
95 B
Go
// +build !go1.4
|
|
|
|
package main
|
|
|
|
import "os"
|
|
|
|
func unsetenv(key string) {
|
|
os.Setenv(key, "")
|
|
}
|