Add fsblkcnt_t and fsfilcnt_t.

This commit is contained in:
Jonas 'Sortie' Termansen 2013-12-29 23:03:11 +01:00
parent 0117c4fbc7
commit 823d3a3e2f
2 changed files with 10 additions and 4 deletions

View File

@ -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;

View File

@ -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