Feeble attempt at putting out the win tinderbox

This commit is contained in:
Marijn Haverbeke 2011-07-13 11:36:09 +02:00
parent 8d68b0462a
commit ece2d27205

View File

@ -57,8 +57,8 @@ fn dylib_filename(str base) -> str { ret base + ".dll"; }
fn pipe() -> tup(int, int) {
auto fds = tup(mutable 0, 0);
assert (os::libc::pipe(ptr::addr_of(fds._0), 1024u,
libc_constants::O_BINARY()) == 0);
assert (os::libc::_pipe(ptr::addr_of(fds._0), 1024u,
libc_constants::O_BINARY()) == 0);
ret tup(fds._0, fds._1);
}