From 1d0a52a3497ada98bb4013ba907a00b4ab9a1ccd Mon Sep 17 00:00:00 2001 From: Jacob Erlbeck Date: Tue, 2 Jun 2015 11:28:07 +0200 Subject: 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 --- src/llc.h | 4 ++++ 1 file changed, 4 insertions(+) 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 */ -- cgit v1.2.3