#ifndef ASSERT_H #define ASSERT_H #include "core.h" #include #define assert(cond) if (!(cond)) { kpanic("Assertion failed: " #cond); } #endif