X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/a71ece51e49f739e0eff8022e6c5d66813d1aa56..760157f50bbb2c9b4f2ab01a74d76d062fc418ba:/common/crc16.h

diff --git a/common/crc16.h b/common/crc16.h
index 8eb4befb..3db2cd79 100644
--- a/common/crc16.h
+++ b/common/crc16.h
@@ -5,13 +5,14 @@
 //-----------------------------------------------------------------------------
 // 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);
 uint16_t crc16_ccitt_kermit(uint8_t const *message, int length);
-uint16_t bit_reverse_uint16 (uint16_t value);
 #endif