From d0406d3838d4e70f19dcac1747decd7dd9b7435c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Krause?= Date: Thu, 13 Aug 2015 13:34:13 +0200 Subject: lib/nl: add missing header CMSG_NXTHDR requires . This fix a build error with the musl C library: ``` undefined reference to `__cmsg_nxthdr' ``` https://github.com/thom311/libnl/pull/83 --- lib/nl.c | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/nl.c') diff --git a/lib/nl.c b/lib/nl.c index f06e9a0..1e1b1ed 100644 --- a/lib/nl.c +++ b/lib/nl.c @@ -32,6 +32,7 @@ #include #include #include +#include /** * @defgroup core_types Data Types -- cgit v1.2.3