Browse Source

[libc/time] Fix MDK build error when using gmtime_r.

armink 4 years ago
parent
commit
6eb6752398
1 changed files with 4 additions and 0 deletions
  1. 4 0
      components/libc/compilers/common/sys/time.h

+ 4 - 0
components/libc/compilers/common/sys/time.h

@@ -57,6 +57,10 @@ time_t timegm(struct tm * const t);
 int gettimeofday(struct timeval *tv, struct timezone *tz);
 int gettimeofday(struct timeval *tv, struct timezone *tz);
 int settimeofday(const struct timeval *tv, const struct timezone *tz);
 int settimeofday(const struct timeval *tv, const struct timezone *tz);
 
 
+#if defined(__ARMCC_VERSION) || defined (__ICCARM__)
+struct tm *gmtime_r(const time_t *timep, struct tm *r);
+#endif
+
 #ifdef RT_USING_POSIX
 #ifdef RT_USING_POSIX
 #include <sys/types.h>
 #include <sys/types.h>
 /* posix clock and timer */
 /* posix clock and timer */