Index: runtime/bin/socket_fuchsia.cc |
diff --git a/runtime/bin/socket_fuchsia.cc b/runtime/bin/socket_fuchsia.cc |
index ba6f51f0c3b3d576d842f4ae64e19e8e2fda53ab..2936bc6992fbf8c9e8b02b5e902601d9c46e6ef0 100644 |
--- a/runtime/bin/socket_fuchsia.cc |
+++ b/runtime/bin/socket_fuchsia.cc |
@@ -7,11 +7,22 @@ |
#include "platform/globals.h" |
#if defined(HOST_OS_FUCHSIA) |
-#include "bin/socket.h" |
- |
#include <errno.h> // NOLINT |
+#include <fcntl.h> // NOLINT |
+#include <ifaddrs.h> // NOLINT |
+#include <net/if.h> // NOLINT |
+#include <netinet/tcp.h> // NOLINT |
+#include <stdio.h> // NOLINT |
+#include <stdlib.h> // NOLINT |
+#include <string.h> // NOLINT |
+#include <sys/ioctl.h> // NOLINT |
+#include <sys/stat.h> // NOLINT |
+#include <unistd.h> // NOLINT |
#include "bin/fdutils.h" |
+#include "bin/file.h" |
+#include "bin/socket.h" |
+#include "bin/socket_base_fuchsia.h" |
#include "platform/signal_blocker.h" |
// #define SOCKET_LOG_INFO 1 |