- Modified XTEA to use uint32_t instead of unsigned long

diff --git a/include/polarssl/xtea.h b/include/polarssl/xtea.h
index 770ecc2..45f7547 100644
--- a/include/polarssl/xtea.h
+++ b/include/polarssl/xtea.h
@@ -20,6 +20,8 @@
 #ifndef POLARSSL_XTEA_H
 #define POLARSSL_XTEA_H
 
+#include <inttypes.h>
+
 #define XTEA_ENCRYPT     1
 #define XTEA_DECRYPT     0
 
@@ -29,7 +31,7 @@
  */
 typedef struct
 {
-    unsigned long k[4];       /*!< key */
+    uint32_t k[4];       /*!< key */
 }
 xtea_context;