From 290bb03343e7e6cf62982276b93ee63b3799ece0 Mon Sep 17 00:00:00 2001 From: Zsolt Saskovy Date: Thu, 28 Nov 2019 22:12:34 +0100 Subject: [PATCH] Changed the order of winsock2 and windows includes. Wrong onder caused compilation errors under Windows --- simavr/sim/sim_network.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simavr/sim/sim_network.h b/simavr/sim/sim_network.h index b3e0fb3..da4600a 100644 --- a/simavr/sim/sim_network.h +++ b/simavr/sim/sim_network.h @@ -30,8 +30,8 @@ extern "C" { // Windows with MinGW -#include #include +#include #include #define send(sockfd, buf, len, flags) \ -- 2.39.5