From f16b83b29349dae16f07aae9a1709aed0dff247d Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Tue, 15 Jan 2019 11:14:43 -0700 Subject: Add configure script Some older installs don't have __kernel_rwf_t in linux/fs.h, so add a check for that. Signed-off-by: Jens Axboe --- src/syscall.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/syscall.c') diff --git a/src/syscall.c b/src/syscall.c index a625b47..7097c46 100644 --- a/src/syscall.c +++ b/src/syscall.c @@ -4,6 +4,7 @@ #include #include #include +#include "compat.h" #include "io_uring.h" #if defined(__x86_64) -- cgit