4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-15 11:00:04 +08:00
2000-02-17 19:39:52 +00: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));
}