Add missing <sys/select.h> include

`select()` may not be ambiently available for use on every platform
This commit is contained in:
Emily Trau 2023-06-05 20:18:24 -07:00
parent 9c6ede85fc
commit b37dd43db4

View file

@ -24,6 +24,7 @@
#include <sys/stat.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <sys/select.h>
#include <errno.h>
#include <pwd.h>
#include <grp.h>