| Index: fusl/include/sys/sendfile.h
|
| diff --git a/fusl/include/sys/sendfile.h b/fusl/include/sys/sendfile.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e7570d8e5c4f0226c88321b8d7cafb5071ec8391
|
| --- /dev/null
|
| +++ b/fusl/include/sys/sendfile.h
|
| @@ -0,0 +1,22 @@
|
| +#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)
|
| +#define sendfile64 sendfile
|
| +#define off64_t off_t
|
| +#endif
|
| +
|
| +#ifdef __cplusplus
|
| +}
|
| +#endif
|
| +
|
| +#endif
|
|
|