From f5291a6ce16ef64ab9a4e022976bb2c3de90259b Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Tue, 9 Aug 2016 12:11:11 +0200 Subject: [PATCH] FIX: Travis CI complains about missing stdbool.h includes --- client/cmdlfawid.c | 12 +----------- client/cmdlfawid.h | 12 ++++++++++++ 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/client/cmdlfawid.c b/client/cmdlfawid.c index 676a18c1..e4155319 100644 --- a/client/cmdlfawid.c +++ b/client/cmdlfawid.c @@ -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 // 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); diff --git a/client/cmdlfawid.h b/client/cmdlfawid.h index eeb052fd..d7859f3d 100644 --- a/client/cmdlfawid.h +++ b/client/cmdlfawid.h @@ -11,6 +11,18 @@ #ifndef CMDLFAWID_H__ #define CMDLFAWID_H__ +#include // sscanf +#include // 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); -- 2.39.5