| 682 | |
| 683 | #ifdef _WIN32 |
| 684 | LONG CALLBACK se_handler(PEXCEPTION_POINTERS info) |
| 685 | { |
| 686 | if (info->ExceptionRecord->ExceptionCode == EXCEPTION_ACCESS_VIOLATION) { |
| 687 | on_signal(SIGSEGV); |
| 688 | } |
| 689 | return EXCEPTION_CONTINUE_SEARCH; |
| 690 | } |
| 691 | #endif |
| 692 | |
| 693 | int main(int argc, char** argv) |
nothing calls this directly
no test coverage detected