| 9 | static int main_wrapper(int argc, char *argv[]); |
| 10 | |
| 11 | int main(int argc, char *argv[]) { |
| 12 | startCapture(); |
| 13 | int ret = main_wrapper(argc, argv); |
| 14 | stopCapture(); |
| 15 | return ret; |
| 16 | } |
| 17 | |
| 18 | #else |
| 19 | #define MAIN main |
nothing calls this directly
no outgoing calls
no test coverage detected