X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/b403c300910c62cbacf95be213efdc6ed8ed85d1..87c10b2a0f49b1542258b5a4ed6f83a125c5da8f:/client/util.h diff --git a/client/util.h b/client/util.h index 7a2fd46f..701662c3 100644 --- a/client/util.h +++ b/client/util.h @@ -14,9 +14,22 @@ #include #include #include // math.pow +#include // time, gmtime #include "proxmark3.h" // time_t #include "data.h" // for FILE_PATH_SIZE +#include +// Handle platform specific includes +#ifndef _WIN32 + #include + #include + #include +#else + #include + #include +#endif + + #ifndef BITMASK # define BITMASK(X) (1 << (X)) #endif