commit | fb66f3d13f3dd54eaea048a867f5f8c437c34b77 | [log] [tgz] |
---|---|---|
author | Colin Cross <ccross@android.com> | Tue Aug 17 18:56:16 2021 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Tue Aug 17 18:56:16 2021 +0000 |
tree | 70f36e96f80ccab1787876ac4b0a667d051194f5 | |
parent | b33cfbfc4ba261fef8788e126518ccdc26b0020c [diff] | |
parent | cbca269d75f885468e179608fddcac4eae27c81f [diff] |
Merge "Include sys/select.h for fd_set"
diff --git a/fastboot/socket.cpp b/fastboot/socket.cpp index 5a14b63..3096905 100644 --- a/fastboot/socket.cpp +++ b/fastboot/socket.cpp
@@ -28,6 +28,10 @@ #include "socket.h" +#ifndef _WIN32 +#include <sys/select.h> +#endif + #include <android-base/errors.h> #include <android-base/stringprintf.h>