Retro68/gcc/newlib/libc/sys/sysvi386/dup2.c
Wolfgang Thaller d464252791 re-add newlib
2017-04-11 23:13:36 +02:00

8 lines
131 B
C

#include <fcntl.h>
int
dup2 (int fd1, int fd2) {
close (fd2); /* ignore errors, if any */
return (fcntl (fd1, F_DUPFD, fd2));
}