aboutsummaryrefslogtreecommitdiff
path: root/libc/inc/assert.h
blob: 91c4ccd8878383ccc5d1f4054c1a5473f72bcbe5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// MIT License, Copyright (c) 2020 Marvin Borner

#ifndef ASSERT_H
#define ASSERT_H

#include <print.h>

#define assert(exp)                                                                                \
	if (!(exp)) {                                                                              \
		printf("%s:%d: %s: Assertion '%s' failed\n", __FILE__, __LINE__, __func__, #exp);  \
		__asm__ volatile("cli\nhlt");                                                      \
	}

#endif