Ai
1 Star 0 Fork 0

Linux OS/musl

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
assert.h 428 Bytes
一键复制 编辑 原始数据 按行查看 历史
Rich Felker 提交于 2016-08-31 04:39 +08:00 . restore _Noreturn to __assert_fail
#include <features.h>
#undef assert
#ifdef NDEBUG
#define assert(x) (void)0
#else
#define assert(x) ((void)((x) || (__assert_fail(#x, __FILE__, __LINE__, __func__),0)))
#endif
#if __STDC_VERSION__ >= 201112L && !defined(__cplusplus)
#define static_assert _Static_assert
#endif
#ifdef __cplusplus
extern "C" {
#endif
_Noreturn void __assert_fail (const char *, const char *, int, const char *);
#ifdef __cplusplus
}
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/linux-os/musl.git
git@gitee.com:linux-os/musl.git
linux-os
musl
musl
master

搜索帮助