Files
mop3/libaux/assert.h
kamkow1 217179c9a0
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m42s
Handle IRQs inside the kernel
2026-03-13 20:33:27 +01:00

13 lines
518 B
C

#ifndef _LIBAUX_ASSERT_H
#define _LIBAUX_ASSERT_H
#include <system.h>
#define assert(x) \
do { \
if (!(x)) \
quit (); \
} while (0)
#endif // _LIBAUX_ASSERT_H