Include sys/select.h for fd_set

Fixes build on musl.
This commit is contained in:
Fabian Homborg 2020-02-12 19:28:56 +01:00
parent a6bd5fac0c
commit fa7a2975d8

View file

@ -4,6 +4,8 @@
#include <chrono>
#include <cstdint>
#include <functional>
// Needed for musl
#include <sys/select.h> // IWYU pragma: keep
#include "common.h"
#include "maybe.h"