mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-13 18:57:12 +08:00
FIX: this should fix the compilation error for MAC users.
This commit is contained in:
parent
3c61ee4338
commit
ac36c57789
1 changed files with 4 additions and 1 deletions
|
@ -30,7 +30,10 @@
|
|||
#ifdef __WIN32
|
||||
#include <windows.h>
|
||||
#endif
|
||||
#include <malloc.h>
|
||||
// don't include for APPLE/mac which has malloc stuff elsewhere.
|
||||
#ifndef __APPLE__
|
||||
#include <malloc.h>
|
||||
#endif
|
||||
#include <assert.h>
|
||||
|
||||
#define CONFIDENCE_THRESHOLD 0.95 // Collect nonces until we are certain enough that the following brute force is successfull
|
||||
|
|
Loading…
Reference in a new issue