File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ LIO_WRITE
17
17
PIPE_BUF
18
18
SIGEV_PORT
19
19
_POSIX_VDISABLE
20
+ _ST_FSTYPSZ
20
21
aio_cancel
21
22
aio_error
22
23
aio_fsync
Original file line number Diff line number Diff line change 344
344
pub st_ctime_nsec: c_long,
345
345
pub st_blksize: crate :: blksize_t,
346
346
pub st_blocks: crate :: blkcnt_t,
347
- __unused : [ c_char; 16 ] ,
347
+ pub st_fstype : [ c_char; _ST_FSTYPSZ as usize ] ,
348
348
}
349
349
350
350
pub struct termios {
@@ -2029,6 +2029,8 @@ pub const _SC_XOPEN_STREAMS: c_int = 761;
2029
2029
pub const _SC_IPV6: c_int = 762 ;
2030
2030
pub const _SC_RAW_SOCKETS: c_int = 763 ;
2031
2031
2032
+ pub const _ST_FSTYPSZ: c_int = 16 ;
2033
+
2032
2034
pub const _MUTEX_MAGIC: u16 = 0x4d58 ; // MX
2033
2035
pub const _COND_MAGIC: u16 = 0x4356 ; // CV
2034
2036
pub const _RWL_MAGIC: u16 = 0x5257 ; // RW
You can’t perform that action at this time.
0 commit comments