shithub: lwext4

Download patch

ref: eb3f719c5ad909533540dfb1eb2f8fd6aa664a85
parent: b6fbf91b0ccfc72adb0e19bf189dbd77d5d38f6a
author: gkostka <kostka.grzegorz@gmail.com>
date: Mon Apr 7 06:54:09 EDT 2014

Fixed header order.

--- a/fs_test/lwext4_client.c
+++ b/fs_test/lwext4_client.c
@@ -7,10 +7,9 @@
 #include <getopt.h>
 
 #ifdef WIN32
-#include <windows.h>
 #include <winsock2.h>
 #include <ws2tcpip.h>
-
+#include <windows.h>
 static int inet_pton(int af, const char *src, void *dst);
 
 #else
--- a/fs_test/lwext4_server.c
+++ b/fs_test/lwext4_server.c
@@ -10,8 +10,9 @@
 #include <time.h>
 
 #ifdef WIN32
-#include <windows.h>
 #include <winsock2.h>
+#include <ws2tcpip.h>
+#include <windows.h>
 #else
 #include <sys/socket.h>
 #include <netinet/in.h>