mirror of
https://github.com/mirror/make.git
synced 2025-01-27 12:51:07 +08:00
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.
This commit is contained in:
parent
5c0fba7240
commit
bc120f27bd
@ -1,3 +1,8 @@
|
|||||||
|
2013-09-16 Eli Zaretskii <eliz@gnu.org>
|
||||||
|
|
||||||
|
* output.c [WINDOWS32]: Include windows.h and sub_proc.h, to avoid
|
||||||
|
compiler warnings for CLOSE_ON_EXEC.
|
||||||
|
|
||||||
2013-09-16 Paul Smith <psmith@gnu.org>
|
2013-09-16 Paul Smith <psmith@gnu.org>
|
||||||
|
|
||||||
* configure.ac: Update version to 3.99.91.
|
* configure.ac: Update version to 3.99.91.
|
||||||
|
5
output.c
5
output.c
@ -30,6 +30,11 @@ this program. If not, see <http://www.gnu.org/licenses/>. */
|
|||||||
# include <sys/file.h>
|
# include <sys/file.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef WINDOWS32
|
||||||
|
# include <windows.h>
|
||||||
|
# include "sub_proc.h"
|
||||||
|
#endif /* WINDOWS32 */
|
||||||
|
|
||||||
struct output *output_context = NULL;
|
struct output *output_context = NULL;
|
||||||
static unsigned int stdio_traced = 0;
|
static unsigned int stdio_traced = 0;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user