10 Star 15 Fork 5

anolis / fio

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
debug.c 273 Bytes
一键复制 编辑 原始数据 按行查看 历史
Sitsofe Wheeler 提交于 2018-03-19 05:33 . Refactor #includes and headers
#include <assert.h>
#include <stdarg.h>
#include "debug.h"
#include "log.h"
#ifdef FIO_INC_DEBUG
void __dprint(int type, const char *str, ...)
{
va_list args;
assert(type < FD_DEBUG_MAX);
va_start(args, str);
log_prevalist(type, str, args);
va_end(args);
}
#endif
1
https://gitee.com/anolis/fio.git
git@gitee.com:anolis/fio.git
anolis
fio
fio
an8

搜索帮助