From e9b1b9c78c0230174b1885971e08ebf2cb9f020d Mon Sep 17 00:00:00 2001 From: B I Mohammed Abbas Date: Mon, 8 Jul 2024 17:21:43 +0530 Subject: [PATCH] Add missing constant S_ISVTX for vxworks --- src/vxworks/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vxworks/mod.rs b/src/vxworks/mod.rs index f50f31031605f..7da4ec05bd828 100644 --- a/src/vxworks/mod.rs +++ b/src/vxworks/mod.rs @@ -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;