diff options
Diffstat (limited to 'gpgme/posix-io.c')
-rw-r--r-- | gpgme/posix-io.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gpgme/posix-io.c b/gpgme/posix-io.c index 7d7be1e5..c44879db 100644 --- a/gpgme/posix-io.c +++ b/gpgme/posix-io.c @@ -494,3 +494,10 @@ _gpgme_io_sendmsg (int fd, const struct msghdr *msg, int flags) errno = saved_errno; return nwritten; } + + +int +_gpgme_io_dup (int fd) +{ + return dup (fd); +} |