From da8279796e4438b19442fad89c31b4955751877e Mon Sep 17 00:00:00 2001 From: iceman1001 <iceman@iuse.se> Date: Wed, 16 Nov 2016 18:52:13 +0100 Subject: [PATCH 1/1] FIX: that time.h issue is different on POSIX systems and WINDOWS system and in C... --- client/util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/util.h b/client/util.h index de1fa095..c92493e8 100644 --- a/client/util.h +++ b/client/util.h @@ -17,6 +17,7 @@ #include "proxmark3.h" // time_t #include "data.h" // for FILE_PATH_SIZE +#include <time.h> // Handle platform specific includes #ifndef _WIN32 #include <termios.h> @@ -24,7 +25,6 @@ #include <sys/time.h> #else #include <conio.h> - #include <time.h> #include <windows.h> #endif -- 2.39.5