Add <sys/select.h> where appropriate

Under Posix systems, this header is documented to be required
when using select().
This commit is contained in:
Joerg Wunsch 2022-11-17 14:14:22 +01:00
parent 01be288b18
commit 9df522a219
2 changed files with 3 additions and 0 deletions

View File

@ -36,6 +36,7 @@
#include <sys/ioctl.h>
#include <sys/types.h>
#include <sys/time.h>
#include <sys/select.h>
#include <sys/socket.h>
#include <netdb.h>

View File

@ -44,6 +44,8 @@
#ifdef WIN32
#include <windows.h>
#else
#include <sys/select.h>
#endif
#endif