diff options
author | Bernd Schubert <bschubert@ddn.com> | 2025-07-21 13:24:55 +0200 |
---|---|---|
committer | Bernd Schubert <bernd@bsbernd.com> | 2025-07-22 14:47:12 +0200 |
commit | 898def7594b3b63a44119f5d77c797644108e74e (patch) | |
tree | f32362b1fb35005b299c29e0b2c2bc8acdb5c31f | |
parent | e915a28ec44ba0f5345eed9985e862ebe13104cb (diff) | |
download | libfuse-898def7594b3b63a44119f5d77c797644108e74e.tar.gz |
fuse_uring_i.h: Include errno.h
Needed for ENOTSUP
Signed-off-by: Bernd Schubert <bschubert@ddn.com>
-rw-r--r-- | lib/fuse_uring_i.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/fuse_uring_i.h b/lib/fuse_uring_i.h index 14418ef..c1da73a 100644 --- a/lib/fuse_uring_i.h +++ b/lib/fuse_uring_i.h @@ -16,6 +16,8 @@ #include "util.h" #endif +#include <errno.h> // IWYU pragma: keep + /* io-uring defaults */ #define SESSION_DEF_URING_ENABLE (0) #define SESSION_DEF_URING_Q_DEPTH (8) |