Import Upstream version 20180207
[hcoop/debian/mlton.git] / runtime / basis / Posix / IO / pipe.c
1 #include "platform.h"
2
3 C_Errno_t(C_Int_t) Posix_IO_pipe (Array(C_Fd_t) fds) {
4 return pipe ((int *) fds);
5 }