mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-01 15:20:36 -08:00
_pipe() is also needed for Mingw32
This commit is contained in:
parent
04268a5a51
commit
b3fc6d3975
1 changed files with 1 additions and 1 deletions
|
|
@ -53,7 +53,7 @@ si_make_pipe()
|
|||
{
|
||||
cl_object output;
|
||||
int fds[2], ret;
|
||||
#ifdef _MSC_VER
|
||||
#if defined(_MSC_VER) || defined(mingw32)
|
||||
ret = _pipe(fds, 4096, _O_BINARY);
|
||||
#else
|
||||
ret = pipe(fds);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue