musl-tcc/src/unistd/pipe.c
2022-03-20 16:48:53 +08:00

12 lines
161 B
C

#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
}