ack/mach/xenix3/libsys/pipe.c

7 lines
45 B
C
Raw Normal View History

1987-10-06 16:39:14 +00:00
int
pipe(f)
int f[2];
{
1990-01-19 17:37:29 +00:00
return _pipe(f);
1987-10-06 16:39:14 +00:00
}