libosmogsm  0.9.6-9.20170220git32ee5af8.fc29
Osmocom GSM library
common.h
1 
2 #include <stdint.h>
3 #include <stdlib.h>
4 #include <string.h>
5 
6 #define MSG_DEBUG
7 #define wpa_hexdump(x, args...)
8 #define wpa_hexdump_key(x, args...)
9 #define wpa_printf(x, args...)
10 
11 #define os_memcpy(x, y, z) memcpy(x, y, z)
12 #define os_memcmp(x, y, z) memcmp(x, y, z)
13 #define os_memset(x, y, z) memset(x, y, z)
14 #define os_malloc(x) malloc(x)
15 #define os_free(x) free(x)
16 
17 typedef uint8_t u8;
18 typedef uint32_t u32;
19 
20 #define __must_check