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
This commit is contained in:
Jacob Erlbeck 2015-06-02 11:28:07 +02:00
parent 6dbe822062
commit 1d0a52a349
1 changed files with 4 additions and 0 deletions

View File

@ -23,6 +23,10 @@
#define LLC_MAX_LEN 1543
struct BTS;
struct timeval;
struct msgb;
/**
* I represent the LLC data to a MS
*/