FIX: the time_t calls under mingw needs a #define _USE_32BIT_TIME_T 1 to be correct. It seems to work in "hf mf mifare" but not in "hf mf hardnested"

This commit is contained in:
iceman1001 2016-10-29 21:42:46 +02:00
commit b403c30091
9 changed files with 88 additions and 25 deletions

View file

@ -13,10 +13,9 @@
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <time.h>
#include <math.h> // math.pow
#include "proxmark3.h" // time_t
#include "data.h" // for FILE_PATH_SIZE
#include "proxmark3.h"
#ifndef BITMASK
# define BITMASK(X) (1 << (X))