From: Eli Zaretskii Date: Mon, 16 Sep 2013 08:30:01 +0000 (+0300) Subject: Avoid compiler warnings in output.c on MS-Windows. X-Git-Tag: 3.99.92~16 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bc120f27bd87ff32218c30bd9589201eff7fcfee;p=platform%2Fupstream%2Fmake.git Avoid compiler warnings in output.c on MS-Windows. output.c [WINDOWS32]: Include windows.h and sub_proc.h, to avoid compiler warnings for CLOSE_ON_EXEC. --- diff --git a/ChangeLog b/ChangeLog index a24e263..a9e3d36 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2013-09-16 Eli Zaretskii + + * output.c [WINDOWS32]: Include windows.h and sub_proc.h, to avoid + compiler warnings for CLOSE_ON_EXEC. + 2013-09-16 Paul Smith * configure.ac: Update version to 3.99.91. diff --git a/output.c b/output.c index c9e1909..c445e63 100644 --- a/output.c +++ b/output.c @@ -30,6 +30,11 @@ this program. If not, see . */ # include #endif +#ifdef WINDOWS32 +# include +# include "sub_proc.h" +#endif /* WINDOWS32 */ + struct output *output_context = NULL; static unsigned int stdio_traced = 0;