mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
FIX: time printing, like difftime in MINGW enviroments needs to use 32b time.
This commit is contained in:
parent
9ea10847ea
commit
be6e909c5b
5 changed files with 8 additions and 4 deletions
|
@ -12,6 +12,10 @@
|
|||
#ifndef PROXMARK3_H__
|
||||
#define PROXMARK3_H__
|
||||
|
||||
#ifdef __WIN32
|
||||
// for MINGW32 environments
|
||||
#define _USE_32BIT_TIME_T 1
|
||||
#endif
|
||||
#define __STDC_FORMAT_MACROS 1
|
||||
#include <inttypes.h>
|
||||
#define lx PRIx32
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue