| 947 | |
| 948 | #define UNUSED(x) (void)(x) |
| 949 | int utilTest(int argc, char **argv, int accurate) { |
| 950 | UNUSED(argc); |
| 951 | UNUSED(argv); |
| 952 | UNUSED(accurate); |
| 953 | |
| 954 | test_string2ll(); |
| 955 | test_string2l(); |
| 956 | test_ll2string(); |
| 957 | return 0; |
| 958 | } |
| 959 | #endif |
nothing calls this directly
no test coverage detected