diff --git a/console.h b/console.h index 1c483c7..e7cbe39 100644 --- a/console.h +++ b/console.h @@ -3,8 +3,4 @@ void printk(const char *msg); _Noreturn void panic(const char *msg); -#define check(expr) \ - if (!(expr)) { \ - panic("Assertion failed at " __FILE__ " : " \ - " : " #expr "\n"); \ - } \ No newline at end of file +#define check(expr) if (!(expr)) {panic("Assertion failed at " __FILE__ " : " #expr "\n");} \ No newline at end of file