Skip to content

Commit 2a2f507

Browse files
authored
Merge pull request #3768 from biabbas/add_S_ISVTX
Add missing constant S_ISVTX for vxworks
2 parents 80a7d2e + e9b1b9c commit 2a2f507

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/vxworks/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -753,6 +753,7 @@ pub const S_IFSOCK: ::c_int = 0o14_0000;
753753
pub const S_ISUID: ::c_int = 0o4000;
754754
pub const S_ISGID: ::c_int = 0o2000;
755755
pub const S_ISTXT: ::c_int = 0o1000;
756+
pub const S_ISVTX: mode_t = 0o1000;
756757
pub const S_IRUSR: ::c_int = 0o0400;
757758
pub const S_IWUSR: ::c_int = 0o0200;
758759
pub const S_IXUSR: ::c_int = 0o0100;

0 commit comments

Comments
 (0)