1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-11 22:31:12 +02:00

Conditionalize process.h, add io.h believe needed for _pipe on mingw.

This commit is contained in:
Kevin Ryde 2006-12-14 23:20:59 +00:00
parent 0403bb28f4
commit 12fa431a82

View file

@ -23,7 +23,6 @@
#endif
#include <fcntl.h> /* for mingw */
#include <process.h> /* for mingw */
#include <signal.h>
#include <stdio.h>
#include <errno.h>
@ -38,6 +37,14 @@
#include "libguile/validate.h"
#include "libguile/scmsigs.h"
#ifdef HAVE_IO_H
#include <io.h> /* for mingw _pipe() */
#endif
#ifdef HAVE_PROCESS_H
#include <process.h> /* for mingw */
#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif