mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-24 23:32:06 +00:00
8 lines
131 B
C
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));
|
|
}
|