From 1b68098f0830ac8c0ebbf69c71e07f12c49ec03a Mon Sep 17 00:00:00 2001 From: tangyuxin <462747508@qq.com> Date: Tue, 16 Mar 2021 14:07:36 +0800 Subject: [PATCH] [libc] Fix Win32 compilation errors --- components/libc/compilers/common/sys/time.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/components/libc/compilers/common/sys/time.h b/components/libc/compilers/common/sys/time.h index 67ef1d2faa..2a40b7b805 100644 --- a/components/libc/compilers/common/sys/time.h +++ b/components/libc/compilers/common/sys/time.h @@ -32,13 +32,15 @@ extern "C" { * Structure returned by gettimeofday(2) system call, * and used in other calls. */ +#if !(defined(_WIN32)) struct timeval { long tv_sec; /* seconds */ long tv_usec; /* and microseconds */ }; +#endif #endif /* _TIMEVAL_DEFINED */ -#if !(defined(__GNUC__) && !defined(__ARMCC_VERSION)) && !defined (__ICCARM__) +#if !(defined(__GNUC__) && !defined(__ARMCC_VERSION)) && !defined (__ICCARM__) && !defined (_WIN32) struct timespec { time_t tv_sec; /* seconds */ long tv_nsec; /* and nanoseconds */ -- GitLab