gwin32networkmonitor: fix build with MSVC

Don't include unistd.h unconditionally.
This commit is contained in:
Tim-Philipp Müller 2018-02-20 00:56:35 +00:00
parent 5e2fa022e2
commit 03d06c175f

View File

@ -21,7 +21,10 @@
#include "config.h"
#include <errno.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <winsock2.h>
#include <ws2tcpip.h>