From: iceman1001 Date: Thu, 7 Jul 2016 00:15:40 +0000 (+0200) Subject: CHG: moved includes into header file where it belong X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/a8ee668770c99f651346266a506b79192e944ab3?ds=sidebyside;hp=e7470660c20f6525ca35bdea429f47e440b0b305 CHG: moved includes into header file where it belong --- 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