File tree Expand file tree Collapse file tree 4 files changed +10
-0
lines changed
src/unix/linux_like/linux Expand file tree Collapse file tree 4 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -647,3 +647,5 @@ timex
647647utmpname
648648utmpx
649649utmpxname
650+ euidaccess
651+ eaccess
Original file line number Diff line number Diff line change @@ -48,3 +48,5 @@ process_vm_writev
4848pwritev64
4949reallocarray
5050timex
51+ euidaccess
52+ eaccess
Original file line number Diff line number Diff line change @@ -1315,6 +1315,9 @@ extern "C" {
13151315
13161316 pub fn memfd_create ( name : * const :: c_char , flags : :: c_uint ) -> :: c_int ;
13171317 pub fn mlock2 ( addr : * const :: c_void , len : :: size_t , flags : :: c_uint ) -> :: c_int ;
1318+
1319+ pub fn euidaccess ( pathname : * const :: c_char , mode : :: c_int ) -> :: c_int ;
1320+ pub fn eaccess ( pathname : * const :: c_char , mode : :: c_int ) -> :: c_int ;
13181321}
13191322
13201323extern "C" {
Original file line number Diff line number Diff line change @@ -754,6 +754,9 @@ extern "C" {
754754 pub fn memfd_create ( name : * const :: c_char , flags : :: c_uint ) -> :: c_int ;
755755 pub fn mlock2 ( addr : * const :: c_void , len : :: size_t , flags : :: c_uint ) -> :: c_int ;
756756 pub fn malloc_usable_size ( ptr : * mut :: c_void ) -> :: size_t ;
757+
758+ pub fn euidaccess ( pathname : * const :: c_char , mode : :: c_int ) -> :: c_int ;
759+ pub fn eaccess ( pathname : * const :: c_char , mode : :: c_int ) -> :: c_int ;
757760}
758761
759762cfg_if ! {
You can’t perform that action at this time.
0 commit comments