aboutsummaryrefslogtreecommitdiffstats
path: root/src/common/bts.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2011-03-04 14:18:23 +0100
committerHarald Welte <laforge@gnumonks.org>2011-03-04 14:18:23 +0100
commit33e2041b289af270fad905b9b6b6ff24f74daed5 (patch)
tree18061396a6be58cd262d18b886d08e8949669910 /src/common/bts.c
parent7241d22867e4a30d1f48fa71ef013fe386d90810 (diff)
Fix include paths and start to make code compile
(still lots of missing references into osmocom-bb code)
Diffstat (limited to 'src/common/bts.c')
-rw-r--r--src/common/bts.c18
1 files changed, 10 insertions, 8 deletions
diff --git a/src/common/bts.c b/src/common/bts.c
index 668fd917..ff23bdde 100644
--- a/src/common/bts.c
+++ b/src/common/bts.c
@@ -18,6 +18,8 @@
*
*/
+#include <errno.h>
+
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
@@ -27,14 +29,14 @@
#include <osmocore/msgb.h>
#include <osmocore/talloc.h>
#include <osmocore/protocol/gsm_12_21.h>
-#include <osmocom/bb/common/logging.h>
-#include <osmocom/bb/common/osmocom_data.h>
-#include <osmocom/bb/common/l1l2_interface.h>
-#include <osmocom/bb/bts/abis.h>
-#include <osmocom/bb/bts/rtp.h>
-#include <osmocom/bb/bts/bts.h>
-#include <osmocom/bb/bts/rsl.h>
-#include <osmocom/bb/bts/oml.h>
+#include <osmo-bts/logging.h>
+//#include <osmocom/bb/common/osmocom_data.h>
+//#include <osmocom/bb/common/l1l2_interface.h>
+#include <osmo-bts/abis.h>
+#include <osmo-bts/rtp.h>
+#include <osmo-bts/bts.h>
+#include <osmo-bts/rsl.h>
+#include <osmo-bts/oml.h>
extern void *l23_ctx;