From 9e147480ed16892c1867f2923f2722c7e186836f Mon Sep 17 00:00:00 2001 From: Simon Kelley Date: Tue, 2 Mar 2021 21:17:28 +0000 Subject: [PATCH] Always use Previously we were always using since HAVE_POLL_H is never set. This looks like an autoconfism that has crept in, but we don't use autoconf. poll.h is the correct header file, as far as I can tell. --- src/dnsmasq.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/dnsmasq.h b/src/dnsmasq.h index e770454..7b36608 100644 --- a/src/dnsmasq.h +++ b/src/dnsmasq.h @@ -95,11 +95,7 @@ typedef unsigned long long u64; #if defined(HAVE_SOLARIS_NETWORK) # include #endif -#if defined(HAVE_POLL_H) -# include -#else -# include -#endif +#include #include #include #include