1 //+build go1.8,!openbsd 2 3 package osext 4 5 import "os" 6 7 func executable() (string, error) { 8 return os.Executable() 9 } 10