libosmogsm  0.11.0-dirty
Osmocom GSM library
src/gsm/milenage/common.h
Go to the documentation of this file.
00001 
00003 #include <stdint.h>
00004 #include <stdlib.h>
00005 #include <string.h>
00006 
00007 #define MSG_DEBUG
00008 #define wpa_hexdump(x, args...)
00009 #define wpa_hexdump_key(x, args...)
00010 #define wpa_printf(x, args...)
00011 
00012 #define os_memcpy(x, y, z)  memcpy(x, y, z)
00013 #define os_memcmp(x, y, z)  memcmp(x, y, z)
00014 #define os_memset(x, y, z)  memset(x, y, z)
00015 #define os_malloc(x)  malloc(x)
00016 #define os_free(x)  free(x)
00017 
00018 typedef uint8_t u8;
00019 typedef uint32_t u32;
00020 
00021 #define __must_check
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines