diff options
author | Rosen Penev | 2019-11-26 22:17:16 -0800 |
---|---|---|
committer | GitHub | 2019-11-26 22:17:16 -0800 |
commit | ed0fc222b60172417423120e925657e9346c7967 (patch) | |
tree | ae77c0c488c520dc24cd4aa4f97d56c8daaad6d0 /tools | |
parent | e97cebeaf7d8f3793b40c3e7bb3ab63853098f5d (diff) | |
download | libusbmuxd-ed0fc222b60172417423120e925657e9346c7967.tar.gz libusbmuxd-ed0fc222b60172417423120e925657e9346c7967.tar.bz2 |
inetcat: Add missing sys/select header
Fixes compilation under musl.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/inetcat.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/inetcat.c b/tools/inetcat.c index b306a47..5c908ae 100644 --- a/tools/inetcat.c +++ b/tools/inetcat.c @@ -33,6 +33,7 @@ #include <windows.h> #include <winsock2.h> #else +#include <sys/select.h> #include <sys/socket.h> #include <sys/un.h> #include <sys/ioctl.h> |