From: iceman1001 Date: Wed, 16 Nov 2016 17:52:13 +0000 (+0100) Subject: FIX: that time.h issue is different on POSIX systems and WINDOWS system and in C... X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/da8279796e4438b19442fad89c31b4955751877e FIX: that time.h issue is different on POSIX systems and WINDOWS system and in C... --- 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 // Handle platform specific includes #ifndef _WIN32 #include @@ -24,7 +25,6 @@ #include #else #include - #include #include #endif