From 76efc82860b4d2d53e81370e67207d0a842d5e75 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Tue, 15 Jun 2010 22:55:48 +0200 Subject: [PATCH] ws2_32/tests: Reorder includes so that winsock.h is included before system headers. --- dlls/ws2_32/tests/sock.c | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/dlls/ws2_32/tests/sock.c b/dlls/ws2_32/tests/sock.c index 6356d9f474d..c4050530c3a 100644 --- a/dlls/ws2_32/tests/sock.c +++ b/dlls/ws2_32/tests/sock.c @@ -20,20 +20,13 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ -#include -#include - -#include "ntstatus.h" +#include #define WIN32_NO_STATUS -#include -#include -#include +#include #include #include +#include #include "wine/test.h" -#include -#include -#include #define MAX_CLIENTS 4 /* Max number of clients */ #define NUM_TESTS 4 /* Number of tests performed */