From d8af0c170b0cb749183c87f0bd002efb41f878cf Mon Sep 17 00:00:00 2001 From: Bram Matthys Date: Sat, 14 Dec 2019 05:23:10 +0100 Subject: [PATCH] sys/resource.h must be included earlier, otherwise ulimit (the fd limit) is left unchanged at 1024. --- include/sys.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/sys.h b/include/sys.h index b3baf25c5..f651330e7 100644 --- a/include/sys.h +++ b/include/sys.h @@ -43,6 +43,7 @@ #ifndef _WIN32 #include #include +#include #endif /* get intptr_t if the system provides it -- otherwise, ./configure will define it for us */