소스 검색

修复iar dlib时间映射函数的函数声明,适应不同版本的iar

hichard 7 년 전
부모
커밋
61656e23f2
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      components/libc/compilers/dlib/time.c

+ 2 - 2
components/libc/compilers/dlib/time.c

@@ -42,9 +42,9 @@ int gettimeofday(struct timeval *tp, void *ignore)
  */
 #pragma module_name = "?time"
 #if _DLIB_TIME_ALLOW_64
-time_t __time64(time_t *t)
+__time64_t __time64(__time64_t *t)
 #else
-time_t __time32(time_t *t)
+__time32_t __time32(__time32_t *t)
 #endif
 {
   time_t time_now = 0;