X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/2b1f4228c2987459445d30443f92038f9ea080c6..d760c7b3d920636877a30f96fbb876bce798b5a7:/common/parity.c?ds=sidebyside

diff --git a/common/parity.c b/common/parity.c
index b783b1e9..66fcc558 100644
--- a/common/parity.c
+++ b/common/parity.c
@@ -5,8 +5,7 @@
 //-----------------------------------------------------------------------------
 // parity functions
 //-----------------------------------------------------------------------------
-
-#include <stdint.h>
+#include <parity.h>
 
 const uint8_t OddByteParity[256] = {
   1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1,
@@ -45,5 +44,4 @@ const uint8_t EvenByteParity[256] = {
   1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1,
   0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0
 };
-