mirror of
git://git.musl-libc.org/musl
synced 2024-12-24 07:32:49 +00:00
57d5fff5f7
one file was reusing another file's macro name, and many had inconsistent underscores and application of SYS prefix, etc. patch by Szabolcs Nagy (nsz)
22 lines
307 B
C
22 lines
307 B
C
#ifndef _SYS_SENDFILE_H
|
|
#define _SYS_SENDFILE_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <unistd.h>
|
|
|
|
ssize_t sendfile(int, int, off_t *, size_t);
|
|
|
|
#if defined(_LARGEFILE64_SOURCE) || defined(_GNU_SOURCE)
|
|
#define sendfile64 sendfile
|
|
#define off64_t off_t
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|