dup2 method

int dup2(
  1. int arg0,
  2. int arg1
)

Implementation

int dup2(int arg0, int arg1) {
  return _dup2(arg0, arg1);
}