| 60 | } |
| 61 | |
| 62 | int main() { |
| 63 | int rc; |
| 64 | |
| 65 | rc = c_adder(20, 35); |
| 66 | if (rc == 0) |
| 67 | printf("2nd call, result = %d\n", result()); |
| 68 | else |
| 69 | printf("2nd call, sadface: %s\n", latest_err_msg()); |
| 70 | |
| 71 | return 0; |
| 72 | } |
| 73 |
nothing calls this directly
no test coverage detected