diff options
| author | manuel <manuel@mausz.at> | 2013-02-04 00:08:53 +0100 |
|---|---|---|
| committer | manuel <manuel@mausz.at> | 2013-02-04 00:08:53 +0100 |
| commit | 69aec538b456402170dc723af417ba5c05389c32 (patch) | |
| tree | e6f34c543f17c6392447ea337b2e2868212424d1 /fd_copy.c | |
| download | qmail-69aec538b456402170dc723af417ba5c05389c32.tar.gz qmail-69aec538b456402170dc723af417ba5c05389c32.tar.bz2 qmail-69aec538b456402170dc723af417ba5c05389c32.zip | |
qmail 1.03 import
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 | } | ||
