mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Add fsblkcnt_t and fsfilcnt_t.
This commit is contained in:
parent
0117c4fbc7
commit
823d3a3e2f
2 changed files with 10 additions and 4 deletions
|
@ -42,9 +42,9 @@ typedef int __clockid_t;
|
|||
|
||||
typedef __uintptr_t __dev_t;
|
||||
|
||||
/* TODO: __fsblkcnt_t */
|
||||
typedef __intmax_t __fsblkcnt_t;
|
||||
|
||||
/* TODO: __fsblksize_t */
|
||||
typedef __intmax_t __fsfilcnt_t;
|
||||
|
||||
typedef __uint64_t __gid_t;
|
||||
|
||||
|
|
|
@ -58,9 +58,15 @@ typedef __clockid_t clockid_t;
|
|||
typedef __dev_t dev_t;
|
||||
#endif
|
||||
|
||||
/* TODO: fsblkcnt_t */
|
||||
#ifndef __fsblkcnt_t_defined
|
||||
#define __fsblkcnt_t_defined
|
||||
typedef __fsblkcnt_t fsblkcnt_t;
|
||||
#endif
|
||||
|
||||
/* TODO: fsfilcnt_t */
|
||||
#ifndef __fsfilcnt_t_defined
|
||||
#define __fsfilcnt_t_defined
|
||||
typedef __fsfilcnt_t fsfilcnt_t;
|
||||
#endif
|
||||
|
||||
#ifndef __gid_t_defined
|
||||
#define __gid_t_defined
|
||||
|
|
Loading…
Reference in a new issue