From cd623ebb560d33de2b29ad3d93af5ebbd30c85e1 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Sun, 29 May 2011 15:37:38 +0200 Subject: bitvec: add missing stdint.h --- include/osmocom/core/bitvec.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/osmocom') diff --git a/include/osmocom/core/bitvec.h b/include/osmocom/core/bitvec.h index bbe1641b..7cb8a873 100644 --- a/include/osmocom/core/bitvec.h +++ b/include/osmocom/core/bitvec.h @@ -23,6 +23,7 @@ * */ +#include /* In GSM mac blocks, every bit can be 0 or 1, or L or H. L/H are * defined relative to the 0x2b padding pattern */ -- cgit v1.2.3 From 271c43b0ae533c0371b2380f91e79dc97bdd0bcc Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Tue, 31 May 2011 00:42:38 +0200 Subject: abis_nm: Forward declare the used enums This file is using enums in that might or might not be known to the compiler. Forward declare them. --- include/osmocom/gsm/abis_nm.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/osmocom') diff --git a/include/osmocom/gsm/abis_nm.h b/include/osmocom/gsm/abis_nm.h index dcc8d4bb..85345575 100644 --- a/include/osmocom/gsm/abis_nm.h +++ b/include/osmocom/gsm/abis_nm.h @@ -4,6 +4,9 @@ #include #include +enum abis_nm_msgtype; +enum gsm_phys_chan_config; + const enum abis_nm_msgtype abis_nm_reports[4]; const enum abis_nm_msgtype abis_nm_no_ack_nack[3]; const enum abis_nm_msgtype abis_nm_sw_load_msgs[9]; -- cgit v1.2.3 From fc90646d489ed85c73b5b809e3b74851fa57b3d9 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Sun, 5 Jun 2011 11:22:59 +0200 Subject: abis_nm.h: Add include to gsm_utils.h --- include/osmocom/gsm/abis_nm.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/osmocom') diff --git a/include/osmocom/gsm/abis_nm.h b/include/osmocom/gsm/abis_nm.h index 85345575..3f5335e2 100644 --- a/include/osmocom/gsm/abis_nm.h +++ b/include/osmocom/gsm/abis_nm.h @@ -2,6 +2,7 @@ #define _OSMO_GSM_ABIS_NM_H #include +#include #include enum abis_nm_msgtype; -- cgit v1.2.3 From ee50081daa3a80586f3044056517337a8e8fac9f Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Sun, 5 Jun 2011 19:53:56 +0200 Subject: add missing #include file to sysinfo.h (otherwise 'struct value_string' would not be defined) --- include/osmocom/gsm/sysinfo.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/osmocom') diff --git a/include/osmocom/gsm/sysinfo.h b/include/osmocom/gsm/sysinfo.h index a66f3f19..6c81134e 100644 --- a/include/osmocom/gsm/sysinfo.h +++ b/include/osmocom/gsm/sysinfo.h @@ -1,6 +1,7 @@ #ifndef _OSMO_GSM_SYSINFO_H #define _OSMO_GSM_SYSINFO_H +#include #include enum osmo_sysinfo_type { -- cgit v1.2.3