File tree 3 files changed +3
-0
lines changed
3 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -575,6 +575,7 @@ extern {
575
575
len : :: off_t ) -> :: c_int ;
576
576
pub fn sched_setscheduler ( pid : :: pid_t , policy : :: c_int , param : * const sched_param ) -> :: c_int ;
577
577
pub fn sched_getscheduler ( pid : :: pid_t ) -> :: c_int ;
578
+ pub fn memrchr ( cx : * const :: c_void , c : :: c_int , n : :: size_t ) -> * mut :: c_void ;
578
579
}
579
580
580
581
cfg_if ! {
Original file line number Diff line number Diff line change @@ -363,6 +363,7 @@ extern {
363
363
pub fn pthread_set_name_np ( tid : :: pthread_t , name : * const :: c_char ) ;
364
364
pub fn pthread_stackseg_np ( thread : :: pthread_t ,
365
365
sinfo : * mut :: stack_t ) -> :: c_uint ;
366
+ pub fn memrchr ( cx : * const :: c_void , c : :: c_int , n : :: size_t ) -> * mut :: c_void ;
366
367
}
367
368
368
369
cfg_if ! {
Original file line number Diff line number Diff line change @@ -606,6 +606,7 @@ extern {
606
606
arg : * mut :: c_void , ...) -> :: c_int ;
607
607
pub fn statfs ( path : * const :: c_char , buf : * mut statfs ) -> :: c_int ;
608
608
pub fn fstatfs ( fd : :: c_int , buf : * mut statfs ) -> :: c_int ;
609
+ pub fn memrchr ( cx : * const :: c_void , c : :: c_int , n : :: size_t ) -> * mut :: c_void ;
609
610
}
610
611
611
612
cfg_if ! {
You can’t perform that action at this time.
0 commit comments