OSDN Git Service

michael_d writes in [#2064]: fix building on linux-2.0 systems
[uclinux-h8/uClibc.git] / libc / sysdeps / linux / common / sendfile.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * sendfile() for uClibc
4  *
5  * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
6  *
7  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
8  */
9
10 /* need to hide the 64bit prototype or the strong_alias()
11  * will fail when __NR_sendfile64 doesnt exist */
12 #define sendfile64 __hidesendfile64
13
14 #include <sys/syscall.h>
15 #include <unistd.h>
16 #include <sys/sendfile.h>
17
18 #undef sendfile64
19
20 #ifdef __NR_sendfile
21
22 _syscall4(ssize_t, sendfile, int, out_fd, int, in_fd, __off_t *, offset,
23                   size_t, count);
24
25 #if ! defined __NR_sendfile64 && defined __UCLIBC_HAS_LFS__
26 strong_alias(sendfile,sendfile64)
27 #endif
28
29 #endif /* __NR_sendfile */