]> git.zerfleddert.de Git - proxmark3-svn/commitdiff
CHG: moved includes into header file where it belong
authoriceman1001 <iceman@iuse.se>
Thu, 7 Jul 2016 00:15:40 +0000 (02:15 +0200)
committericeman1001 <iceman@iuse.se>
Thu, 7 Jul 2016 00:15:40 +0000 (02:15 +0200)
armsrc/BigBuf.c
armsrc/BigBuf.h

index 57eb8db1d8c46b14b8d840f18036f98ec1b195e1..91cf5ce8e965ce1856a498ac0b56a39114b9b583 100644 (file)
@@ -8,11 +8,7 @@
 //-----------------------------------------------------------------------------
 // BigBuf and functions to allocate/free parts of it.
 //-----------------------------------------------------------------------------
-
-#include <stdint.h>
-#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.
index 347c1a4cbbd219ab28f6a97ef42ad80b675921b0..61e82b865a29ee135b72a5c92ee1a24dc544b707 100644 (file)
@@ -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
Impressum, Datenschutz