mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-15 03:34:22 +08:00
FIX: Travis CI complains about missing stdbool.h includes
This commit is contained in:
parent
10c4231ec7
commit
f5291a6ce1
2 changed files with 13 additions and 11 deletions
|
@ -7,19 +7,9 @@
|
|||
// at your option, any later version. See the LICENSE.txt file for the text of
|
||||
// the license.
|
||||
//-----------------------------------------------------------------------------
|
||||
// Low frequency AWID26 commands
|
||||
// Low frequency AWID26/50 commands
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
#include <stdio.h> // sscanf
|
||||
#include "proxmark3.h" // Definitions, USB controls, etc
|
||||
#include "ui.h" // PrintAndLog
|
||||
#include "cmdparser.h" // CmdsParse, CmdsHelp
|
||||
#include "cmdlfawid.h" // AWID function declarations
|
||||
#include "lfdemod.h" // parityTest
|
||||
#include "util.h" // weigandparity
|
||||
#include "protocols.h" // for T55xx config register definitions
|
||||
#include "cmdmain.h"
|
||||
#include "sleep.h"
|
||||
|
||||
static int CmdHelp(const char *Cmd);
|
||||
|
||||
|
|
|
@ -11,6 +11,18 @@
|
|||
#ifndef CMDLFAWID_H__
|
||||
#define CMDLFAWID_H__
|
||||
|
||||
#include <stdio.h> // sscanf
|
||||
#include <stdbool.h> // bool
|
||||
#include "proxmark3.h" // Definitions, USB controls, etc
|
||||
#include "ui.h" // PrintAndLog
|
||||
#include "cmdparser.h" // CmdsParse, CmdsHelp
|
||||
#include "lfdemod.h" // parityTest
|
||||
#include "util.h" // weigandparity
|
||||
#include "protocols.h" // for T55xx config register definitions
|
||||
#include "cmdmain.h"
|
||||
#include "sleep.h"
|
||||
|
||||
|
||||
int CmdLFAWID(const char *Cmd);
|
||||
int CmdAWIDDemodFSK(const char *Cmd);
|
||||
int CmdAWIDSim(const char *Cmd);
|
||||
|
|
Loading…
Reference in a new issue