X-Git-Url: http://cvs.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/6eaa8da9dcc7543194435f706c72272783331df7..45c48ae428c0afb18a9bc086c7570415307c829b:/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);