lang-bootstrap/05/musl-final/src/unistd/pipe.c

8 lines
105 B
C
Raw Normal View History

2025-04-05 10:55:40 +01:00
#include <unistd.h>
#include "syscall.h"
int pipe(int fd[2])
{
return syscall1(__NR_pipe, (long)fd);
}