crc24: Include stdint.h as a possible compile fix
diff --git a/openbsc/include/openbsc/crc24.h b/openbsc/include/openbsc/crc24.h
index 74c253f..756638c 100644
--- a/openbsc/include/openbsc/crc24.h
+++ b/openbsc/include/openbsc/crc24.h
@@ -1,6 +1,8 @@
 #ifndef _CRC24_H
 #define _CRC24_H
 
+#include <stdint.h>
+
 #define INIT_CRC24	0xffffff
 
 uint32_t crc24_calc(uint32_t fcs, uint8_t *cp, unsigned int len);