summaryrefslogtreecommitdiffstats
path: root/sys/sys/stat.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/sys/stat.h')
-rw-r--r--sys/sys/stat.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/sys/sys/stat.h b/sys/sys/stat.h
index 0f7f4a3..0f7e349 100644
--- a/sys/sys/stat.h
+++ b/sys/sys/stat.h
@@ -44,9 +44,7 @@
/* XXX missing blkcnt_t, blksize_t. */
#ifndef _DEV_T_DECLARED
-#ifndef _KERNEL
typedef __dev_t dev_t;
-#endif
#define _DEV_T_DECLARED
#endif
@@ -123,13 +121,13 @@ struct ostat {
#endif /* __BSD_VISIBLE */
struct stat {
- __udev_t st_dev; /* inode's device */
+ __dev_t st_dev; /* inode's device */
ino_t st_ino; /* inode's number */
mode_t st_mode; /* inode protection mode */
nlink_t st_nlink; /* number of hard links */
uid_t st_uid; /* user ID of the file's owner */
gid_t st_gid; /* group ID of the file's group */
- __udev_t st_rdev; /* device type */
+ __dev_t st_rdev; /* device type */
#if __BSD_VISIBLE
struct timespec st_atimespec; /* time of last access */
struct timespec st_mtimespec; /* time of last data modification */
@@ -170,13 +168,13 @@ struct stat {
#if __BSD_VISIBLE
struct nstat {
- __udev_t st_dev; /* inode's device */
+ __dev_t st_dev; /* inode's device */
ino_t st_ino; /* inode's number */
__uint32_t st_mode; /* inode protection mode */
__uint32_t st_nlink; /* number of hard links */
uid_t st_uid; /* user ID of the file's owner */
gid_t st_gid; /* group ID of the file's group */
- __udev_t st_rdev; /* device type */
+ __dev_t st_rdev; /* device type */
struct timespec st_atimespec; /* time of last access */
struct timespec st_mtimespec; /* time of last data modification */
struct timespec st_ctimespec; /* time of last file status change */
OpenPOWER on IntegriCloud