diff options
Diffstat (limited to 'userland/libc/assert.h')
-rw-r--r-- | userland/libc/assert.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/userland/libc/assert.h b/userland/libc/assert.h deleted file mode 100644 index a009e5f..0000000 --- a/userland/libc/assert.h +++ /dev/null @@ -1,10 +0,0 @@ -#ifndef ASSERT_H -#define ASSERT_H - -#define assert(expr) \ - { \ - if (!(expr)) \ - aFailed(__FILE__, __LINE__); \ - } -void aFailed(char *f, int l); -#endif |