aboutsummaryrefslogtreecommitdiffstats
path: root/src/llc.h
diff options
context:
space:
mode:
authorJacob Erlbeck <jerlbeck@sysmocom.de>2015-06-02 11:28:07 +0200
committerJacob Erlbeck <jerlbeck@sysmocom.de>2015-06-08 09:35:29 +0200
commit1d0a52a3497ada98bb4013ba907a00b4ab9a1ccd (patch)
tree8fdaa5bc80593d9b711cc7995164fe7609a3da1e /src/llc.h
parent6dbe822062d54a6c765c6fa7e2c6b79a5dff29b1 (diff)
llc: Add missing declarations to llc.h
Currently llc.h relies on the structs BTS, timeval, and msgb being declared before the file is included. This commit adds forward declaration for these structs, because they will only be used for pointer types. Sponsored-by: On-Waves ehf
Diffstat (limited to 'src/llc.h')
-rw-r--r--src/llc.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/llc.h b/src/llc.h
index 251712a3..a58a65b1 100644
--- a/src/llc.h
+++ b/src/llc.h
@@ -23,6 +23,10 @@
#define LLC_MAX_LEN 1543
+struct BTS;
+struct timeval;
+struct msgb;
+
/**
* I represent the LLC data to a MS
*/