1
0
mirror of https://github.com/libssh2/libssh2.git synced 2025-08-08 19:02:07 +03:00

Added include for sys/select.h to get fd.set on some platforms.

This commit is contained in:
Guenter Knauf
2010-08-17 01:34:32 +02:00
parent ac709e0d4f
commit 4b878e7cf8

View File

@@ -22,6 +22,9 @@
#ifdef HAVE_NETINET_IN_H #ifdef HAVE_NETINET_IN_H
# include <netinet/in.h> # include <netinet/in.h>
#endif #endif
#ifdef HAVE_SYS_SELECT_H
# include <sys/select.h>
#endif
# ifdef HAVE_UNISTD_H # ifdef HAVE_UNISTD_H
#include <unistd.h> #include <unistd.h>
#endif #endif