| 2 | // SPDX-License-Identifier: MIT |
| 3 | |
| 4 | int main() |
| 5 | { |
| 6 | #ifdef NDEBUG |
| 7 | # define assert(condition) ((void)0) |
| 8 | #else |
| 9 | # define assert(condition) /*implementation defined*/ |
| 10 | #endif |
| 11 | } |
nothing calls this directly
no outgoing calls
no test coverage detected