ack/mach/i386/libsys/dup2.c
1989-10-10 11:40:55 +00:00

7 lines
66 B
C

int
dup2(oldd, newd)
{
oldd |= 64;
return __xdup(oldd, newd);
}