|
@@ -87,6 +87,9 @@ TYPE
|
|
|
st_qspare1 : cint64; // was recursive change detect
|
|
|
st_qspare2 : cint64;
|
|
|
{$else dragonfly}
|
|
|
+{$ifdef openbsd}
|
|
|
+ st_mode : mode_t; // inode protection mode
|
|
|
+{$endif openbsd}
|
|
|
st_dev : dev_t; // inode's device
|
|
|
{$ifdef darwin_new_iostructs}
|
|
|
st_mode : mode_t; // inode protection mode
|
|
@@ -99,16 +102,15 @@ TYPE
|
|
|
st_ino : ino_t; // inode's number
|
|
|
{$else not netbsd}
|
|
|
st_ino : ino_t; // inode's number
|
|
|
+{$ifndef openbsd}
|
|
|
st_mode : mode_t; // inode protection mode
|
|
|
+{$endif not openbsd}
|
|
|
{$endif not netbsd}
|
|
|
st_nlink : nlink_t; // number of hard links
|
|
|
{$endif}
|
|
|
st_uid : uid_t; // user ID of the file's owner
|
|
|
st_gid : gid_t; // group ID of the file's group
|
|
|
st_rdev : dev_t; // device type
|
|
|
-{$ifdef openbsd}
|
|
|
- st_padd0 : cint;
|
|
|
-{$endif}
|
|
|
st_atime : time_t; // time of last access
|
|
|
st_atimensec : clong; // nsec of last access
|
|
|
st_mtime : time_t; // time of last data modification
|