summaryrefslogtreecommitdiffstats
path: root/plugins/epan/wimax/crc_data.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/epan/wimax/crc_data.c')
-rw-r--r--plugins/epan/wimax/crc_data.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/plugins/epan/wimax/crc_data.c b/plugins/epan/wimax/crc_data.c
index 0dcc8b27..b399cf3c 100644
--- a/plugins/epan/wimax/crc_data.c
+++ b/plugins/epan/wimax/crc_data.c
@@ -16,9 +16,7 @@
#ifdef STATIC_DATA
-#include <glib.h>
-
-guint32 crc32_table[256] = {
+uint32_t crc32_table[256] = {
0x00000000, 0x04c11db7, 0x09823b6e, 0x0d4326d9,
0x130476dc, 0x17c56b6b, 0x1a864db2, 0x1e475005,
0x2608edb8, 0x22c9f00f, 0x2f8ad6d6, 0x2b4bcb61,
@@ -86,7 +84,7 @@ guint32 crc32_table[256] = {
};
-guint8 hcs_table[256] = {
+uint8_t hcs_table[256] = {
0x00, 0x07, 0x0e, 0x09, 0x1c, 0x1b, 0x12, 0x15,
0x38, 0x3f, 0x36, 0x31, 0x24, 0x23, 0x2a, 0x2d,
0x70, 0x77, 0x7e, 0x79, 0x6c, 0x6b, 0x62, 0x65,
@@ -122,7 +120,7 @@ guint8 hcs_table[256] = {
};
#endif
-guint16 crc16_table[256] = {
+uint16_t crc16_table[256] = {
0x0000, 0x1021, 0x2042, 0x3063, 0x4084, 0x50a5, 0x60c6, 0x70e7,
0x8108, 0x9129, 0xa14a, 0xb16b, 0xc18c, 0xd1ad, 0xe1ce, 0xf1ef,
0x1231, 0x0210, 0x3273, 0x2252, 0x52b5, 0x4294, 0x72f7, 0x62d6,