(a, b int)
| 663 | } |
| 664 | |
| 665 | func maxInt(a, b int) int { |
| 666 | if a > b { |
| 667 | return a |
| 668 | } |
| 669 | return b |
| 670 | } |
| 671 | |
| 672 | func exitf(format string, args ...interface{}) { |
| 673 | fmt.Fprintf(os.Stderr, format+"\n", args...) |
no outgoing calls
no test coverage detected