X-Git-Url: https://git.exim.org/users/heiko/exim.git/blobdiff_plain/9aa512a1898155484e00ee089057d28f2432b30e..0a6c178c6c5f45668b5bb37b8be723cc9d1e72ae:/src/OS/os.c-Linux diff --git a/src/OS/os.c-Linux b/src/OS/os.c-Linux index df0dff9db..dd65c8b39 100644 --- a/src/OS/os.c-Linux +++ b/src/OS/os.c-Linux @@ -2,7 +2,7 @@ * Exim - an Internet mail transport agent * *************************************************/ -/* Copyright (c) University of Cambridge 1997 - 2001 */ +/* Copyright (c) University of Cambridge 1997 - 2016 */ /* See the file NOTICE for conditions of use and distribution. */ /* Linux-specific code. This is concatenated onto the generic @@ -150,4 +150,16 @@ return yield; #endif /* FIND_RUNNING_INTERFACES */ + +/************* +* Sendfile * +*************/ +#include + +ssize_t +os_sendfile(int out, int in, off_t * off, size_t cnt) +{ +return sendfile(out, in, off, cnt); +} + /* End of os.c-Linux */