未验证 提交 5d9a27d1 编写于 作者: B Bernard Xiong 提交者: GitHub

Merge pull request #1931 from hichard/renhaibo-branch

修复IAR dlib的时间映射,从rtt历史版本找到iar支持64bit时间的起始版本
......@@ -41,10 +41,15 @@ int gettimeofday(struct timeval *tp, void *ignore)
*
*/
#pragma module_name = "?time"
#if _DLIB_TIME_ALLOW_64
__time64_t __time64(__time64_t *t)
#if _DLIB_TIME_USES_64
time_t __time64(time_t *t)
#else
__time32_t __time32(__time32_t *t)
/* for IAR 6.2 later Compiler */
#if defined (__IAR_SYSTEMS_ICC__) && (__VER__) >= 6020000
time_t __time32(time_t *t)
#else
time_t time(time_t *t)
#endif
#endif
{
time_t time_now = 0;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册