Berry failed port attempt leftovers :(
All checks were successful
Build documentation / build-and-deploy (push) Successful in 3m9s

This commit is contained in:
2026-03-08 23:35:41 +01:00
parent ed4db21cf2
commit bea4ddd2c8
22 changed files with 218 additions and 26 deletions

12
libaux/assert.h Normal file
View File

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