All checks were successful
Build documentation / build-and-deploy (push) Successful in 3m9s
13 lines
518 B
C
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
|