GitOS
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) \
9
if (!(EX)) \
10
kernel_panic("Assertion failed: %s at %s:%d", #EX, __FILE__, __LINE__)
11
#define assert_not_reached() assert(0)
kernel.h
src
kernel
common
assert.h
Generated by
1.16.1