libosmogsm  0.9.3
Osmocom GSM library
src/gsm/milenage/common.h
00001 
00002 #include <stdint.h>
00003 #include <stdlib.h>
00004 #include <string.h>
00005 
00006 #define MSG_DEBUG
00007 #define wpa_hexdump(x, args...)
00008 #define wpa_hexdump_key(x, args...)
00009 #define wpa_printf(x, args...)
00010 
00011 #define os_memcpy(x, y, z)  memcpy(x, y, z)
00012 #define os_memcmp(x, y, z)  memcmp(x, y, z)
00013 #define os_memset(x, y, z)  memset(x, y, z)
00014 #define os_malloc(x)  malloc(x)
00015 #define os_free(x)  free(x)
00016 
00017 typedef uint8_t u8;
00018 typedef uint32_t u32;
00019 
00020 #define __must_check