File tree 1 file changed +6
-0
lines changed
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -5722,6 +5722,9 @@ pub mod funcs {
5722
5722
pub fn tcgetpgrp ( fd : c_int ) -> pid_t ;
5723
5723
pub fn ttyname ( fd : c_int ) -> * mut c_char ;
5724
5724
pub fn unlink ( c : * const c_char ) -> c_int ;
5725
+ pub fn wait ( status : * const c_int ) -> pid_t ;
5726
+ pub fn waitpid ( pid : pid_t , status : * const c_int , options : c_int )
5727
+ -> pid_t ;
5725
5728
pub fn write ( fd : c_int , buf : * const c_void , count : size_t )
5726
5729
-> ssize_t ;
5727
5730
pub fn pread ( fd : c_int , buf : * mut c_void , count : size_t ,
@@ -5773,6 +5776,9 @@ pub mod funcs {
5773
5776
pub fn sysconf ( name : c_int ) -> c_long ;
5774
5777
pub fn ttyname ( fd : c_int ) -> * mut c_char ;
5775
5778
pub fn unlink ( c : * const c_char ) -> c_int ;
5779
+ pub fn wait ( status : * const c_int ) -> pid_t ;
5780
+ pub fn waitpid ( pid : pid_t , status : * const c_int , options : c_int )
5781
+ -> pid_t ;
5776
5782
pub fn write ( fd : c_int , buf : * const c_void , count : size_t )
5777
5783
-> ssize_t ;
5778
5784
pub fn pread ( fd : c_int , buf : * mut c_void , count : size_t ,
You can’t perform that action at this time.
0 commit comments