From cb66cb39703ae4199241931f7e0b3d92bbef3947 Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan <nirbheek@centricular.com> Date: Sat, 18 Jul 2020 11:19:55 +0530 Subject: [PATCH] silk: Fix incorrect ifdef in debug.c Signed-off-by: Mark Harris <mark.hsj@gmail.com> --- silk/debug.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/silk/debug.c b/silk/debug.c index 71e69cc69..4f02912b2 100644 --- a/silk/debug.c +++ b/silk/debug.c @@ -37,14 +37,13 @@ POSSIBILITY OF SUCH DAMAGE. #if SILK_TIC_TOC -#ifdef _WIN32 - #if (defined(_WIN32) || defined(_WINCE)) #include <windows.h> /* timer */ #else /* Linux or Mac*/ #include <sys/time.h> #endif +#ifdef _WIN32 unsigned long silk_GetHighResolutionTime(void) /* O time in usec*/ { /* Returns a time counter in microsec */ -- GitLab