X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/6eaa8da9dcc7543194435f706c72272783331df7..e1deabc0eb11451828e2e8dd18c0d723b3a7eff8:/common/crc16.h

diff --git a/common/crc16.h b/common/crc16.h
index 3656ce27..3db2cd79 100644
--- a/common/crc16.h
+++ b/common/crc16.h
@@ -5,10 +5,12 @@
 //-----------------------------------------------------------------------------
 // CRC16
 //-----------------------------------------------------------------------------
-#include <stdint.h>
-
 #ifndef __CRC16_H
 #define __CRC16_H
+
+#include <stdint.h>
+#include "util.h"
+
 unsigned short update_crc16(unsigned short crc, unsigned char c);
 uint16_t crc16(uint8_t const *message, int length, uint16_t remainder, uint16_t polynomial);
 uint16_t crc16_ccitt(uint8_t const *message, int length);