Include <sys/uio.h> where it is used
<sys/uio.h> is transitively included via <log/log.h> currently but
after some refactoring it won't be, so include it properly now.
Plus some cleanup of header ordering from clang-format.
Test: build
Change-Id: I8bf45dbb64fae9a3fe008434679650e1ac04c164
diff --git a/server/NetlinkCommands.cpp b/server/NetlinkCommands.cpp
index 473cac0..7af33fe 100644
--- a/server/NetlinkCommands.cpp
+++ b/server/NetlinkCommands.cpp
@@ -15,11 +15,12 @@
*/
#include <errno.h>
-#include <unistd.h>
-#include <sys/socket.h>
-#include <sys/types.h>
#include <linux/netlink.h>
#include <linux/rtnetlink.h>
+#include <sys/socket.h>
+#include <sys/types.h>
+#include <sys/uio.h>
+#include <unistd.h>
#define LOG_TAG "Netd"
#include <log/log.h>