From: Matthias Kruk Date: Wed, 18 Dec 2019 08:28:35 +0000 (+0900) Subject: Add off_t type definition to corax/types.h X-Git-Url: https://git.corax.cc/?a=commitdiff_plain;h=652b837d719e4128b224adf5a6618420b8e9d3ba;p=corax Add off_t type definition to corax/types.h --- 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)