plan9port/src/lib9/pipe.c

11 lines
155 B
C
Raw Normal View History

#include <u.h>
#define NOPLAN9DEFINES
#include <libc.h>
#include <sys/socket.h>
int
p9pipe(int fd[2])
{
return socketpair(AF_UNIX, SOCK_DGRAM, 0, fd);
}