dup2.c 66 B

123456
  1. int
  2. dup2(oldd, newd)
  3. {
  4. oldd |= 64;
  5. return __xdup(oldd, newd);
  6. }