From f41b7386de48a50a1cc3d1549a118b7bd596711d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Mon, 16 Nov 2015 17:45:38 +0100 Subject: [PATCH] include: add stdio.h to uv.h Fixes a compilation problem in some platforms (notably OSX) after 6490c50. PR-URL: https://github.com/libuv/libuv/pull/618 Reviewed-By: Ben Noordhuis Reviewed-By: Jeremy Whitlock --- include/uv.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/uv.h b/include/uv.h index acd00d10..d0c071ce 100644 --- a/include/uv.h +++ b/include/uv.h @@ -48,6 +48,7 @@ extern "C" { #include "uv-errno.h" #include "uv-version.h" #include +#include #if defined(_MSC_VER) && _MSC_VER < 1600 # include "stdint-msvc2008.h"