FIX: Travis CI complains about missing stdbool.h includes
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user