(msg string)
| 36 | } |
| 37 | |
| 38 | func exitError(msg string) { |
| 39 | //fmt.Fprintln(os.Stderr, USAGE) |
| 40 | if msg != "" { |
| 41 | fmt.Fprintln(os.Stderr, "Error: "+msg) |
| 42 | } |
| 43 | os.Exit(1) |
| 44 | } |
| 45 | |
| 46 | func exitOutput(v interface{}) { |
| 47 | var b []byte |
no outgoing calls
no test coverage detected