Fix missing errno.h includes after libc cleanup.
These issues hadn't been found yet because a libc++ header was
unconditionally pulling in errno.h. I've fixed the libc++ header now.
Change-Id: Ib096634cdd231fc75bf7548e4b99babc7442dc53
diff --git a/client/NetdClient.cpp b/client/NetdClient.cpp
index fce362e..0c9d185 100644
--- a/client/NetdClient.cpp
+++ b/client/NetdClient.cpp
@@ -16,15 +16,17 @@
#include "NetdClient.h"
+#include <errno.h>
+#include <sys/socket.h>
+#include <unistd.h>
+
+#include <atomic>
+
#include "Fwmark.h"
#include "FwmarkClient.h"
#include "FwmarkCommand.h"
#include "resolv_netid.h"
-#include <atomic>
-#include <sys/socket.h>
-#include <unistd.h>
-
namespace {
std::atomic_uint netIdForProcess(NETID_UNSET);