From e9824e174082d65117fd51d17377675d06bab7de Mon Sep 17 00:00:00 2001 From: Eric Frias Date: Mon, 4 May 2015 13:36:15 -0400 Subject: [PATCH] Add missing include for isatty on win32 --- src/rpc/cli.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/rpc/cli.cpp b/src/rpc/cli.cpp index 9441894..1525cb2 100644 --- a/src/rpc/cli.cpp +++ b/src/rpc/cli.cpp @@ -23,6 +23,9 @@ # endif # undef HAVE_READLINE # endif +# ifdef WIN32 +# include +# endif #endif namespace fc { namespace rpc {