X-Git-Url: http://git.hcoop.net/hcoop/debian/exim4.git/blobdiff_plain/2813c06e9d6e591298239bc7dac3fb1b5c778a7c..01e60269815612fced0df2994079cb2081f8ff0b:/OS/os.c-Linux diff --git a/OS/os.c-Linux b/OS/os.c-Linux index 4bca776..59d81f8 100644 --- a/OS/os.c-Linux +++ b/OS/os.c-Linux @@ -2,7 +2,7 @@ * Exim - an Internet mail transport agent * *************************************************/ -/* Copyright (c) University of Cambridge 1997 - 2016 */ +/* Copyright (c) University of Cambridge 1997 - 2018 */ /* 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 */