x.vweb: add the missing include for C.sendfile to sendfile_linux.c.v

This commit is contained in:
Delyan Angelov 2024-02-04 23:09:20 +02:00
parent ff60293caf
commit a80af0ff62
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -1,5 +1,7 @@
module vweb
#include <sys/sendfile.h>
fn C.sendfile(out_fd int, in_fd int, offset voidptr, count int) int
fn sendfile(out_fd int, in_fd int, nr_bytes int) int {