blob: 5b42bb4d47267ca990da625c0cf2703e59b21c83 (
plain)
1
2
3
4
5
6
7
|
#include "errcatch.h"
void w2_errcatch_main() {}
void w2_errcatch_throw_msg(enum w2_e_errorcodes code, uint16_t length, const char *message) {}
void w2_errcatch_throw(enum w2_e_errorcodes code) { w2_errcatch_throw_msg(code, 0, ""); }
|