aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJacob Erlbeck <jerlbeck@sysmocom.de>2015-06-15 11:19:13 +0200
committerJacob Erlbeck <jerlbeck@sysmocom.de>2015-06-22 10:39:06 +0200
commit1eae96ca2fe1e23def798ea90645538a4e4193e5 (patch)
tree6a255dba9465b9e6f6c23738f4b79ce61d1a4eb1 /src
parent626369c2fbbd1935d9ddc5aebd86c182e8c87083 (diff)
llc: Add missing include directive to llc.h
Currently struct llist_head is used without declaration which accidently did not produce an error so far. This commit adds the missing include directive. Sponsored-by: On-Waves ehf
Diffstat (limited to 'src')
-rw-r--r--src/llc.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/llc.h b/src/llc.h
index a58a65b1..80d2f7ac 100644
--- a/src/llc.h
+++ b/src/llc.h
@@ -18,6 +18,10 @@
#pragma once
+extern "C" {
+ #include <osmocom/core/linuxlist.h>
+}
+
#include <stdint.h>
#include <string.h>