diff options
Diffstat (limited to 'lib/inc/assert.h')
-rw-r--r-- | lib/inc/assert.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/inc/assert.h b/lib/inc/assert.h deleted file mode 100644 index 2cb095b..0000000 --- a/lib/inc/assert.h +++ /dev/null @@ -1,11 +0,0 @@ -// 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 |