Open in Web IDE
Quickly and easily edit multiple files in your project.
Edit
Edit this file only.
#ifndef __ASSERT_H__
#define __ASSERT_H__
#include "stdio.h"
#define assert(x) \
if (!(x)) \
panic("assertion faild: " #x)
#endif