/* sys/dup2.c (emx+gcc) -- Copyright (c) 1992-1993 by Eberhard Mattes */

#include <sys/emx.h>
#include <os2emx.h>
#include "syscalls.h"

int __dup2 (int handle1, int handle2)
{
  ULONG rc;
  HFILE new;

  new = handle2;
  rc = DosDupHandle (handle1, &new);
  if (rc != 0)
    {
      _sys_set_errno (rc);
      return (-1);
    }
  return (new);
}
