1
0
mirror of https://github.com/fluencelabs/musl synced 2025-07-04 00:51:59 +00:00
Files
arch
crt
dist
include
arpa
net
netinet
netpacket
scsi
sys
acct.h
cachectl.h
epoll.h
eventfd.h
file.h
fsuid.h
inotify.h
io.h
ioctl.h
ipc.h
kd.h
klog.h
mman.h
mount.h
msg.h
mtio.h
param.h
personality.h
poll.h
prctl.h
procfs.h
ptrace.h
reboot.h
reg.h
resource.h
select.h
sem.h
sendfile.h
shm.h
signalfd.h
socket.h
soundcard.h
stat.h
statfs.h
statvfs.h
stropts.h
swap.h
syscall.h
sysctl.h
sysinfo.h
syslog.h
sysmacros.h
time.h
timerfd.h
times.h
timex.h
types.h
ucontext.h
uio.h
un.h
user.h
utsname.h
vfs.h
vt.h
wait.h
xattr.h
aio.h
alloca.h
ar.h
assert.h
byteswap.h
complex.h
cpio.h
crypt.h
ctype.h
dirent.h
dlfcn.h
elf.h
endian.h
err.h
errno.h
fcntl.h
features.h
fenv.h
float.h
fnmatch.h
ftw.h
getopt.h
glob.h
grp.h
iconv.h
ifaddrs.h
inttypes.h
iso646.h
langinfo.h
lastlog.h
libgen.h
libintl.h
limits.h
link.h
locale.h
malloc.h
math.h
memory.h
mntent.h
monetary.h
mqueue.h
netdb.h
nl_types.h
paths.h
poll.h
pthread.h
pty.h
pwd.h
regex.h
resolv.h
sched.h
search.h
semaphore.h
setjmp.h
shadow.h
signal.h
spawn.h
stdalign.h
stdarg.h
stdbool.h
stddef.h
stdint.h
stdio.h
stdio_ext.h
stdlib.h
stdnoreturn.h
string.h
strings.h
stropts.h
syscall.h
sysexits.h
syslog.h
tar.h
termios.h
tgmath.h
time.h
ucontext.h
ulimit.h
unistd.h
utime.h
utmp.h
utmpx.h
values.h
wchar.h
wctype.h
wordexp.h
lib
src
tools
.gitignore
COPYRIGHT
INSTALL
Makefile
README
WHATSNEW
configure
musl/include/sys/sendfile.h

23 lines
329 B
C
Raw Normal View History

#ifndef _SYS_SENDFILE_H
#define _SYS_SENDFILE_H
#ifdef __cplusplus
extern "C" {
#endif
#include <features.h>
#include <unistd.h>
ssize_t sendfile(int, int, off_t *, size_t);
#if defined(_LARGEFILE64_SOURCE) || defined(_GNU_SOURCE)
2012-05-04 00:31:25 -04:00
#define sendfile64 sendfile
#define off64_t off_t
#endif
#ifdef __cplusplus
}
#endif
#endif