1// +build darwin dragonfly freebsd linux netbsd openbsd solaris
2
3package cli
4
5import "os"
6
7func clearenv() {
8	os.Clearenv()
9}
10