550W Document
550W, a high-end OS
assert.h 文件参考
#include <lib/stdio.h>
assert.h 的引用(Include)关系图:
此图展示该文件直接或间接的被哪些文件引用了:

浏览源代码.

宏定义

#define assert(cond)
 

宏定义说明

◆ assert

#define assert (   cond)
值:
{ \
if (!(cond)) { \
_panic(__FILE__, __LINE__,__FUNCTION__); \
} \
}
Definition: sync.h:24