Remove unnecessary sysctl.h include for linux

miniupnpd on Linux unnecessarily includes sys/sysctl.h which breaks builds with musl-libc.

Signed-off-by: Steven Barth <cyrus@openwrt.org>
This commit is contained in:
sbyx 2014-10-21 10:56:34 +02:00
parent 82604ec5d0
commit 47b77fabb6

View File

@ -39,7 +39,7 @@
#include <sys/param.h>
#if defined(sun)
#include <kstat.h>
#else
#elif !defined(__linux__)
/* for BSD's sysctl */
#include <sys/sysctl.h>
#endif