diff options
Diffstat (limited to 'lib/libc/include/assert.h')
-rw-r--r-- | lib/libc/include/assert.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/libc/include/assert.h b/lib/libc/include/assert.h new file mode 100644 index 0000000..4b8fbf8 --- /dev/null +++ b/lib/libc/include/assert.h @@ -0,0 +1,16 @@ +#ifndef _ASSERT_H +#define _ASSERT_H 1 + +#ifdef NDEBUG +#define assert(ignore)((void)0) +#else +#include <stdio.h> +#define assert(condition) \ + if(!(condition)) { \ + fprintf(stderr, "%s:%s:%s: Assertion '%s' failed!\n", \ + __FILE__, __LINE__, __FUNCTION__, #condition); \ + abort(); \ + } +#endif + +#endif |