From a8ee668770c99f651346266a506b79192e944ab3 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Thu, 7 Jul 2016 02:15:40 +0200 Subject: [PATCH] CHG: moved includes into header file where it belong --- armsrc/BigBuf.c | 6 +----- armsrc/BigBuf.h | 3 +++ 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/armsrc/BigBuf.c b/armsrc/BigBuf.c index 57eb8db1..91cf5ce8 100644 --- a/armsrc/BigBuf.c +++ b/armsrc/BigBuf.c @@ -8,11 +8,7 @@ //----------------------------------------------------------------------------- // BigBuf and functions to allocate/free parts of it. //----------------------------------------------------------------------------- - -#include -#include "proxmark3.h" -#include "apps.h" -#include "string.h" +#include "bigbuf.h" // BigBuf is the large multi-purpose buffer, typically used to hold A/D samples or traces. // Also used to hold various smaller buffers and the Mifare Emulator Memory. diff --git a/armsrc/BigBuf.h b/armsrc/BigBuf.h index 347c1a4c..61e82b86 100644 --- a/armsrc/BigBuf.h +++ b/armsrc/BigBuf.h @@ -12,6 +12,9 @@ #ifndef __BIGBUF_H #define __BIGBUF_H +#include "proxmark3.h" +#include "apps.h" +#include "string.h" #define BIGBUF_SIZE 40000 #define MAX_FRAME_SIZE 256 // maximum allowed ISO14443 frame -- 2.39.2