diff options
Diffstat (limited to 'fd_copy.c')
| -rw-r--r-- | fd_copy.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/fd_copy.c b/fd_copy.c new file mode 100644 index 0000000..b9f7167 --- /dev/null +++ b/fd_copy.c | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | #include <fcntl.h> | ||
| 2 | #include "fd.h" | ||
| 3 | |||
| 4 | int fd_copy(to,from) | ||
| 5 | int to; | ||
| 6 | int from; | ||
| 7 | { | ||
| 8 | if (to == from) return 0; | ||
| 9 | if (fcntl(from,F_GETFL,0) == -1) return -1; | ||
| 10 | close(to); | ||
| 11 | if (fcntl(from,F_DUPFD,to) == -1) return -1; | ||
| 12 | return 0; | ||
| 13 | } | ||
