From 4ae1577b432c1859704d2763f70a764dee23bd98 Mon Sep 17 00:00:00 2001 From: Kylie McClain Date: Thu, 28 Apr 2016 22:40:32 -0400 Subject: [PATCH] uxcons: Fix on musl libc musl libc exports FD_SET and friends in sys/select.h. --- unix/uxcons.c | 1 + 1 file changed, 1 insertion(+) diff --git a/unix/uxcons.c b/unix/uxcons.c index b9fd67fe..f2a25f3f 100644 --- a/unix/uxcons.c +++ b/unix/uxcons.c @@ -12,6 +12,7 @@ #include #include #include +#include #include "putty.h" #include "storage.h"