X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/80fea873648ca2ab2e592999a336c59cf054ab55..1c3c17d1739290508bbc7644454027f8617ce59a:/src/OS/os.c-Linux?ds=inline diff --git a/src/OS/os.c-Linux b/src/OS/os.c-Linux index 4bca77615..dd65c8b39 100644 --- a/src/OS/os.c-Linux +++ b/src/OS/os.c-Linux @@ -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 */