ack/mach/xenix3/libsys/dup2.c

7 lines
66 B
C
Raw Normal View History

1987-10-06 16:39:14 +00:00
int
dup2(oldd, newd)
{
oldd |= 64;
return __xdup(oldd, newd);
}