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
647
647
utmpname
648
648
utmpx
649
649
utmpxname
650
+ euidaccess
651
+ eaccess
Original file line number Diff line number Diff line change @@ -48,3 +48,5 @@ process_vm_writev
48
48
pwritev64
49
49
reallocarray
50
50
timex
51
+ euidaccess
52
+ eaccess
Original file line number Diff line number Diff line change @@ -1315,6 +1315,9 @@ extern "C" {
1315
1315
1316
1316
pub fn memfd_create ( name : * const :: c_char , flags : :: c_uint ) -> :: c_int ;
1317
1317
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 ;
1318
1321
}
1319
1322
1320
1323
extern "C" {
Original file line number Diff line number Diff line change @@ -754,6 +754,9 @@ extern "C" {
754
754
pub fn memfd_create ( name : * const :: c_char , flags : :: c_uint ) -> :: c_int ;
755
755
pub fn mlock2 ( addr : * const :: c_void , len : :: size_t , flags : :: c_uint ) -> :: c_int ;
756
756
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 ;
757
760
}
758
761
759
762
cfg_if ! {
You can’t perform that action at this time.
0 commit comments