home *** CD-ROM | disk | FTP | other *** search
/ Dream 48 / Amiga_Dream_48.iso / Atari / c / sozobon-v2 / dlibsrc.lha / DUP.C < prev    next >
C/C++ Source or Header  |  1988-10-04  |  291b  |  20 lines

  1. #include <stdio.h>
  2. #include <osbind.h>
  3. #include <errno.h>
  4.  
  5. int dup(handle)
  6.     int handle;
  7.     {
  8.     register int rv;
  9.  
  10.     if((rv = Fdup(handle)) < (-3))
  11.         errno = rv;
  12.     return(rv);
  13.     }
  14.  
  15. int dup2(handle1, handle2)
  16.     int handle1, handle2;
  17.     {
  18.     return(errno = Fforce(handle2, handle1));
  19.     }
  20.