X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2FOS%2Fos.c-Linux;h=dd65c8b3930cfbe71326db9c3cbcfc1be29962f3;hb=2cee425af0f8c425a410ff12a51f05a175a0c80b;hp=df0dff9db123344deffb0a50b2683b966f4e24b3;hpb=d502442ac32f8964f6cf86469869cecb035d12c0;p=exim.git 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 */