未验证 提交 40c0155b 编写于 作者: B Bernard Xiong 提交者: GitHub

Merge pull request #936 from TanekLiang/stubs_time

[libc] fix time () not found when no RT_USING_RTC defined
......@@ -327,3 +327,12 @@ int fgetc(FILE *f)
return -1;
}
#endif
#ifndef RT_USING_RTC
time_t time(time_t *t)
{
time_t time_now = 0;
return time_now;
}
#endif
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册