Merge branch 'blkcnt' into 'master'

Fix blkcnt_t type

See merge request redox-os/relibc!1036
This commit is contained in:
Jeremy Soller
2026-02-24 06:30:47 -07:00
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;