From 8fcdae354432f2113519af2f1f8776137e7b293d Mon Sep 17 00:00:00 2001 From: guoshichao Date: Sun, 8 Dec 2024 16:38:06 +0800 Subject: [PATCH] sys/types.h: add loff_t data type definition Signed-off-by: guoshichao --- include/sys/types.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/sys/types.h b/include/sys/types.h index 557ed051cfa..e059ef20ab6 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;