File tree 3 files changed +5
-11
lines changed
3 files changed +5
-11
lines changed Original file line number Diff line number Diff line change @@ -736,6 +736,11 @@ extern "C" {
736
736
pub fn shmat ( shmid : :: c_int , shmaddr : * const :: c_void , shmflg : :: c_int ) -> * mut :: c_void ;
737
737
pub fn shmdt ( shmaddr : * const :: c_void ) -> :: c_int ;
738
738
pub fn shmctl ( shmid : :: c_int , cmd : :: c_int , buf : * mut :: shmid_ds ) -> :: c_int ;
739
+ pub fn execvpe (
740
+ file : * const :: c_char ,
741
+ argv : * const * const :: c_char ,
742
+ envp : * const * const :: c_char ,
743
+ ) -> :: c_int ;
739
744
}
740
745
741
746
extern "C" {
Original file line number Diff line number Diff line change @@ -2533,12 +2533,6 @@ extern "C" {
2533
2533
pub fn fchflags ( fd : :: c_int , flags : :: c_ulong ) -> :: c_int ;
2534
2534
pub fn lchflags ( path : * const :: c_char , flags : :: c_ulong ) -> :: c_int ;
2535
2535
2536
- pub fn execvpe (
2537
- file : * const :: c_char ,
2538
- argv : * const * const :: c_char ,
2539
- envp : * const * const :: c_char ,
2540
- ) -> :: c_int ;
2541
-
2542
2536
pub fn extattr_list_fd (
2543
2537
fd : :: c_int ,
2544
2538
attrnamespace : :: c_int ,
Original file line number Diff line number Diff line change @@ -1779,11 +1779,6 @@ safe_f! {
1779
1779
extern "C" {
1780
1780
pub fn gettimeofday ( tp : * mut :: timeval , tz : * mut :: timezone ) -> :: c_int ;
1781
1781
pub fn settimeofday ( tp : * const :: timeval , tz : * const :: timezone ) -> :: c_int ;
1782
- pub fn execvpe (
1783
- file : * const :: c_char ,
1784
- argv : * const * const :: c_char ,
1785
- envp : * const * const :: c_char ,
1786
- ) -> :: c_int ;
1787
1782
pub fn pledge ( promises : * const :: c_char , execpromises : * const :: c_char ) -> :: c_int ;
1788
1783
pub fn unveil ( path : * const :: c_char , permissions : * const :: c_char ) -> :: c_int ;
1789
1784
pub fn strtonum (
You can’t perform that action at this time.
0 commit comments