Skip to content

Commit

Permalink
Merge pull request #3768 from biabbas/add_S_ISVTX
Browse files Browse the repository at this point in the history
Add missing constant S_ISVTX for vxworks
  • Loading branch information
JohnTitor authored Jul 13, 2024
2 parents 80a7d2e + e9b1b9c commit 2a2f507
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 2a2f507

Please sign in to comment.