mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-12-31 04:39:49 +08:00
Merge pull request #62 from micolous/fix-includes
Fix some missing include statements which impact using proxmark3 client as a library
This commit is contained in:
commit
cb0b8f94c9
3 changed files with 4 additions and 0 deletions
|
@ -20,6 +20,7 @@
|
|||
#include "common.h"
|
||||
#include "mifare.h" // nonces_t struct
|
||||
#include "ui.h" // PrintAndLog
|
||||
#include "util.h" // FALSE / TRUE
|
||||
#include "proxmark3.h"
|
||||
#include "mifarehost.h"
|
||||
|
||||
|
|
|
@ -12,6 +12,8 @@
|
|||
#define MAX_BIN_BREAK_LENGTH (3072+384+1)
|
||||
|
||||
#ifndef _WIN32
|
||||
#include <sys/ttydefaults.h>
|
||||
|
||||
int ukbhit(void) {
|
||||
int cnt = 0;
|
||||
int error;
|
||||
|
|
|
@ -14,6 +14,7 @@
|
|||
#include <string.h>
|
||||
#include <ctype.h>
|
||||
#include <math.h> // math.pow
|
||||
#include <time.h> // time, gmtime
|
||||
#include "proxmark3.h" // time_t
|
||||
#include "data.h" // for FILE_PATH_SIZE
|
||||
|
||||
|
|
Loading…
Reference in a new issue