_dup2.c 67 B

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