util.poll: Include unistd.h only for epoll

This defines close(), which is only used with epoll, hence we don't need
to include it when building in poll or select mode.
This commit is contained in:
Kim Alvefur 2023-02-10 00:37:05 +01:00
parent fbfe255e12
commit bf35a39a15

View file

@ -8,7 +8,6 @@
*
*/
#include <unistd.h>
#include <string.h>
#include <errno.h>
@ -24,6 +23,7 @@
#endif
#ifdef USE_EPOLL
#include <unistd.h>
#include <sys/epoll.h>
#ifndef MAX_EVENTS
#define MAX_EVENTS 64