<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">From 88b9bc561ce42f2eb97ea041cd8920797b44dd53 Mon Sep 17 00:00:00 2001
From: Rafael Cossovan &lt;navossoc@gmail.com&gt;
Date: Tue, 3 Apr 2018 17:05:42 -0300
Subject: [PATCH 3/3] Fixes a compile warning when building with musl: #warning
 redirecting incorrect #include &lt;sys/poll.h&gt; to &lt;poll.h&gt;

---
 src/iface.cc | 2 +-
 src/iface.h  | 2 +-
 src/proxy.h  | 2 +-
 src/rule.h   | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/iface.cc b/src/iface.cc
index f569d3c..7cbb57f 100644
--- a/src/iface.cc
+++ b/src/iface.cc
@@ -30,7 +30,7 @@
 #include &lt;sys/ioctl.h&gt;
 #include &lt;sys/types.h&gt;
 #include &lt;sys/socket.h&gt;
-#include &lt;sys/poll.h&gt;
+#include &lt;poll.h&gt;
 
 #include &lt;linux/filter.h&gt;
 
diff --git a/src/iface.h b/src/iface.h
index 9db59ab..df7ff35 100644
--- a/src/iface.h
+++ b/src/iface.h
@@ -20,7 +20,7 @@
 #include &lt;vector&gt;
 #include &lt;map&gt;
 
-#include &lt;sys/poll.h&gt;
+#include &lt;poll.h&gt;
 #include &lt;net/ethernet.h&gt;
 
 #include "ndppd.h"
diff --git a/src/proxy.h b/src/proxy.h
index 8141b2a..9299d9a 100644
--- a/src/proxy.h
+++ b/src/proxy.h
@@ -19,7 +19,7 @@
 #include &lt;vector&gt;
 #include &lt;map&gt;
 
-#include &lt;sys/poll.h&gt;
+#include &lt;poll.h&gt;
 
 #include "ndppd.h"
 
diff --git a/src/rule.h b/src/rule.h
index 0c2f79a..23086e6 100644
--- a/src/rule.h
+++ b/src/rule.h
@@ -20,6 +20,6 @@
 #include &lt;map&gt;
 
-#include &lt;sys/poll.h&gt;
+#include &lt;poll.h&gt;
 
 #include "ndppd.h"

</pre></body></html>