From 162d024a53e1e31e00ff0b6f47dd4590edebc551 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 9 Aug 2020 16:51:01 +0200 Subject: Heavy restructuring of libc, kernel and apps --- lib/inc/assert.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lib/inc/assert.h (limited to 'lib/inc/assert.h') diff --git a/lib/inc/assert.h b/lib/inc/assert.h new file mode 100644 index 0000000..2cb095b --- /dev/null +++ b/lib/inc/assert.h @@ -0,0 +1,11 @@ +// MIT License, Copyright (c) 2020 Marvin Borner + +#ifndef ASSERT_H +#define ASSERT_H + +#include + +#define assert(exp) \ + (exp) ? 0 : printf("%s:%d: %s: Assertion '%s' failed\n", __FILE__, __LINE__, __func__, #exp) + +#endif -- cgit v1.2.3