fix(userspace/falco): disable sys/select.h on windows

Signed-off-by: Roberto Scolaro <roberto.scolaro21@gmail.com>
This commit is contained in:
Roberto Scolaro
2023-10-24 17:28:45 +00:00
committed by poiana
parent 5ee9ff8c8f
commit 89e45ced87

View File

@@ -26,10 +26,10 @@ limitations under the License.
#else #else
#include <unistd.h> #include <unistd.h>
#endif #endif
#if !defined(__APPLE__) && !defined(_WIN32) #ifdef __linux__
#include <sys/inotify.h> #include <sys/inotify.h>
#endif
#include <sys/select.h> #include <sys/select.h>
#endif
#if __GLIBC__ == 2 && __GLIBC_MINOR__ < 30 #if __GLIBC__ == 2 && __GLIBC_MINOR__ < 30
#include <sys/syscall.h> #include <sys/syscall.h>