Sign in
mojo
/
mojo-tools
/
7d579155cc597aa3befcbfad66eef54bda06b57c
/
.
/
fusl
/
src
/
unistd
/
pipe.c
blob: 9b8bde4929c57f55497e3538f6ead5ad72ead3df [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
"syscall.h"
int
pipe
(
int
fd
[
2
])
{
#ifdef
SYS_pipe
return
syscall
(
SYS_pipe
,
fd
);
#else
return
syscall
(
SYS_pipe2
,
fd
,
0
);
#endif
}