blob: aa5f606c10951f40aae4ad8e7e8d310e7d61b62c (
plain) (
tree)
|
|
#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.");
}
|