GitOS
Operating system exercise
Loading...
Searching...
No Matches
assert.h
Go to the documentation of this file.
1//
2// Created by Pawel Reich on 1/15/25.
3//
4
5#pragma once
6#include "kernel.h"
7
8#define assert(EX) if (!(EX)) kernel_panic ("Assertion failed: %s at %s:%d", #EX, __FILE__, __LINE__)
9#define assert_not_reached() assert(0)