#include "std.h" #include "core/sys.h" #include "ui/vt.h" int errno = 0; void abort() { ke_vt->writeStr("\n\n ABORT - errno: "); ke_vt->writeDec(errno); ke_vt->writeStr("\n"); PANIC("abort() called, probably a memory manager failure."); }