This is an automated email from the ASF dual-hosted git repository. acassis pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
commit 8fcdae354432f2113519af2f1f8776137e7b293d Author: guoshichao <guoshic...@xiaomi.com> AuthorDate: Sun Dec 8 16:38:06 2024 +0800 sys/types.h: add loff_t data type definition Signed-off-by: guoshichao <guoshic...@xiaomi.com> --- include/sys/types.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/sys/types.h b/include/sys/types.h index 557ed051cf..e059ef20ab 100644 --- a/include/sys/types.h +++ b/include/sys/types.h @@ -232,6 +232,8 @@ typedef int32_t off_t; typedef int32_t fpos_t; #endif +typedef off_t loff_t; + /* blksize_t is a signed integer value used for file block sizes */ typedef int16_t blksize_t;