From 0cc8ab0a2134fe1a26b3d8e75b1befdfb75a95a4 Mon Sep 17 00:00:00 2001 From: nick black Date: Thu, 5 Aug 2021 05:01:51 -0400 Subject: [PATCH] need winsock2.h in util.c --- src/lib/util.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/util.c b/src/lib/util.c index ec2dd504a..2e4bcbea9 100644 --- a/src/lib/util.c +++ b/src/lib/util.c @@ -1,6 +1,8 @@ #ifndef __MINGW64__ #include #include +#else +#include #endif #include "internal.h"