/* * Copyright 2022 Oleg Borodin */ #include #include #include void x__assert(char* path, int line, const char* func) { printf("%s:%d: assert error in %s\n", path, line, func); exit(1); }