aboutsummaryrefslogtreecommitdiff
path: root/src/lib/inc/assert.h
blob: 2cb095b78e88b4b20ee95a54b980b93a5593f1d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// MIT License, Copyright (c) 2020 Marvin Borner

#ifndef ASSERT_H
#define ASSERT_H

#include <print.h>

#define assert(exp)                                                                                \
	(exp) ? 0 : printf("%s:%d: %s: Assertion '%s' failed\n", __FILE__, __LINE__, __func__, #exp)

#endif