From 652b837d719e4128b224adf5a6618420b8e9d3ba Mon Sep 17 00:00:00 2001 From: Matthias Kruk Date: Wed, 18 Dec 2019 17:28:35 +0900 Subject: [PATCH] Add off_t type definition to corax/types.h --- include/corax/types.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/corax/types.h b/include/corax/types.h index a44015f..d0a4272 100644 --- a/include/corax/types.h +++ b/include/corax/types.h @@ -37,6 +37,8 @@ typedef u32_t pid_t; typedef u32_t uid_t; typedef u32_t gid_t; +typedef long long off_t; + #define PID_ANY ((pid_t)-1) #define UID_ROOT ((uid_t)0) #define GID_ROOT ((gid_t)0) -- 2.47.3