ExitFuncType is the type of function used to exit the program.
func(int)
| 4 | |
| 5 | // ExitFuncType is the type of function used to exit the program. |
| 6 | type ExitFuncType func(int) |
| 7 | |
| 8 | // DefaultExitFunc is the default function used to exit the program. |
| 9 | var DefaultExitFunc ExitFuncType = os.Exit |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…