diff --git a/Pal/regression/Hex.c b/Pal/regression/Hex.c index 70470af7..766deec8 100644 --- a/Pal/regression/Hex.c +++ b/Pal/regression/Hex.c @@ -1,8 +1,17 @@ +#include +#include "pal_debug.h" +/* workaround: warn is not exported by pal. but pal_printf is */ +#define warn pal_printf + #include "hex.h" #include "api.h" #include "pal.h" -#include "pal_debug.h" + +noreturn void __abort(void) { + // ENOTRECOVERABLE = 131 + DkProcessExit(-131); +} int main() { char x[] = {0xde, 0xad, 0xbe, 0xef};