Fix blkcnt_t type

This commit is contained in:
Wildan M
2026-02-24 07:47:35 +07:00
parent 4d61651620
commit 8810e143ec
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ typedef int suseconds_t;
typedef long clock_t;
typedef int clockid_t;
typedef void* timer_t;
typedef unsigned long int blkcnt_t;
typedef long long blkcnt_t;
typedef unsigned long int fsblkcnt_t;
typedef unsigned long int fsfilcnt_t;
+1 -1
View File
@@ -68,7 +68,7 @@ pub type ino_t = c_ulonglong;
pub type reclen_t = c_ushort;
pub type nlink_t = c_ulong;
pub type blksize_t = c_long;
pub type blkcnt_t = c_ulong;
pub type blkcnt_t = c_longlong;
pub type fsblkcnt_t = c_ulong;
pub type fsfilcnt_t = c_ulong;