#ifndef __TRAP_H__ #define __TRAP_H__ #include #include #include __attribute__((noinline)) void check(bool cond) { if (!cond) halt(1); } #endif