From db680a1dff55fa549c6b05ad7423183f72c05369 Mon Sep 17 00:00:00 2001 From: Didiet Date: Thu, 21 Jan 2016 14:47:39 +0700 Subject: [PATCH] ios: fix undefined PTHREAD_STACK_MIN MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/libuv/libuv/pull/692 Reviewed-By: Saúl Ibarra Corretgé --- src/unix/thread.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/unix/thread.c b/src/unix/thread.c index 673e47e9..c35bc926 100644 --- a/src/unix/thread.c +++ b/src/unix/thread.c @@ -29,6 +29,8 @@ #include #include /* getrlimit() */ +#include + #undef NANOSEC #define NANOSEC ((uint64_t) 1e9)