assert.h 145 bytes
#ifndef __ASSERT_H__
#define __ASSERT_H__
#include "stdio.h"
#define assert(x) \
    if (!(x))     \
    panic("assertion faild: " #x)
#endif