#ifndef _KERNEL_LIBK_ASSERT_H #define _KERNEL_LIBK_ASSERT_H #include #define assert(x) \ do { \ if (!(x)) { \ DEBUG ("%s ssertion failed\n", #x); \ spin (); \ } \ } while (0) #endif // _KERNEL_LIBK_ASSERT_H