libcmo21/LibCmo/VTUtils.cpp

12 lines
217 B
C++
Raw Normal View History

2023-02-25 22:58:28 +08:00
#include "VTUtils.hpp"
namespace LibCmo {
2023-08-23 16:04:58 +08:00
2023-08-25 21:57:22 +08:00
void LibPanic(int line, const char* file, const char* errmsg) {
fprintf(stderr, "LIBCMO PANIC:%s (%s:L%d)\n",
errmsg ? errmsg : "", file, line);
std::abort();
}
2023-02-25 22:58:28 +08:00
}