提交 6d2be00b 编写于 作者: H hichard

修复IAR dlib的时间映射,从rtt历史版本找到iar支持64bit时间的起始版本

上级 94c358b1
...@@ -41,10 +41,15 @@ int gettimeofday(struct timeval *tp, void *ignore) ...@@ -41,10 +41,15 @@ int gettimeofday(struct timeval *tp, void *ignore)
* *
*/ */
#pragma module_name = "?time" #pragma module_name = "?time"
#if _DLIB_TIME_ALLOW_64 #if _DLIB_TIME_USES_64
__time64_t __time64(__time64_t *t) time_t __time64(time_t *t)
#else #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 #endif
{ {
time_t time_now = 0; time_t time_now = 0;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册