diff options
Diffstat (limited to 'userland/libc/sys/sendfile.c')
-rw-r--r-- | userland/libc/sys/sendfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/userland/libc/sys/sendfile.c b/userland/libc/sys/sendfile.c index 818883b..9de931b 100644 --- a/userland/libc/sys/sendfile.c +++ b/userland/libc/sys/sendfile.c @@ -1,6 +1,6 @@ +#include <errno.h> #include <sys/sendfile.h> #include <syscall.h> -#include <errno.h> u32 sendfile(int out_fd, int in_fd, off_t *offset, size_t count, int *error_rc) { |