aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2011-04-19 20:06:26 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2011-04-19 20:06:26 +0200
commit71dd06cfcb7d13c38a7dc098f05ae74ea9152567 (patch)
treeeed24d5167e83c57b9b5f9ea2a3b839a600751b7 /openbsc/include
parent123bc3283460ef24f054abef756ba6fcbd4188cc (diff)
crc24: Include stdint.h as a possible compile fix
Diffstat (limited to 'openbsc/include')
-rw-r--r--openbsc/include/openbsc/crc24.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/openbsc/include/openbsc/crc24.h b/openbsc/include/openbsc/crc24.h
index 74c253f62..756638c03 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);