Skip to content

Commit

Permalink
Add missing constant S_ISVTX for vxworks
Browse files Browse the repository at this point in the history
  • Loading branch information
B I Mohammed Abbas committed Jul 8, 2024
1 parent ce2ccd5 commit e9b1b9c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/vxworks/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -753,6 +753,7 @@ pub const S_IFSOCK: ::c_int = 0o14_0000;
pub const S_ISUID: ::c_int = 0o4000;
pub const S_ISGID: ::c_int = 0o2000;
pub const S_ISTXT: ::c_int = 0o1000;
pub const S_ISVTX: mode_t = 0o1000;
pub const S_IRUSR: ::c_int = 0o0400;
pub const S_IWUSR: ::c_int = 0o0200;
pub const S_IXUSR: ::c_int = 0o0100;
Expand Down

0 comments on commit e9b1b9c

Please sign in to comment.