Add winsock2 headers for curl's use of select() on sockets

This commit is contained in:
Sean McNamara 2009-03-27 12:24:24 -04:00 committed by Max Kellermann
parent b1e0bde529
commit 37531f6f1e

View File

@ -25,7 +25,13 @@
#include "icy_metadata.h"
#include <assert.h>
#include <sys/select.h>
#if defined(WIN32)
#include <winsock2.h>
#else
#include <sys/select.h>
#endif
#include <string.h>
#include <errno.h>