Share ino_t and nlink_t.

This commit is contained in:
Mike Barcroft 2003-03-01 16:51:40 +00:00
parent 37413f0a0f
commit 2019acb6e0
2 changed files with 10 additions and 2 deletions

View File

@ -41,9 +41,11 @@ typedef __uint64_t __fsblkcnt_t;
typedef __uint64_t __fsfilcnt_t;
typedef __uint32_t __gid_t;
typedef __int64_t __id_t; /* can hold a gid_t, pid_t, or uid_t */
typedef __uint32_t __ino_t; /* inode number */
typedef long __key_t; /* IPC key (for Sys V IPC) */
typedef __uint16_t __mode_t; /* permissions */
typedef int __nl_item;
typedef __uint16_t __nlink_t; /* link count */
typedef __int64_t __off_t; /* file offset */
typedef __int32_t __pid_t; /* process [group] */
typedef __int64_t __rlim_t; /* resource limit (XXX not unsigned) */

View File

@ -165,7 +165,10 @@ typedef __id_t id_t; /* can hold a uid_t or pid_t */
#define _ID_T_DECLARED
#endif
typedef __uint32_t ino_t; /* inode number */
#ifndef _INO_T_DECLARED
typedef __ino_t ino_t; /* inode number */
#define _INO_T_DECLARED
#endif
#ifndef _KEY_T_DECLARED
typedef __key_t key_t; /* IPC key (for Sys V IPC) */
@ -177,7 +180,10 @@ typedef __mode_t mode_t; /* permissions */
#define _MODE_T_DECLARED
#endif
typedef __uint16_t nlink_t; /* link count */
#ifndef _NLINK_T_DECLARED
typedef __nlink_t nlink_t; /* link count */
#define _NLINK_T_DECLARED
#endif
#ifndef _OFF_T_DECLARED
typedef __off_t off_t; /* file offset */