From fa1de83ac6a9cf3f2b83c063cf989cab46b8965b Mon Sep 17 00:00:00 2001 From: Gleb Pomykalov Date: Tue, 16 Jan 2018 15:50:35 +0300 Subject: [PATCH] Include intrin.h to support 32bit windows arch --- c/windows.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/c/windows.c b/c/windows.c index 858557d..5482878 100644 --- a/c/windows.c +++ b/c/windows.c @@ -3,9 +3,12 @@ #include #include #include +#include #include "info.h" +#pragma intrinsic(__rdtsc) + #define LEN 20 #define MAXPROCESSES 1024 static const char *os_type = "Windows";