File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -535,8 +535,8 @@ extern "C" {
535
535
pub fn strtod_l ( arg1 : * const c_char , arg2 : * mut * mut c_char , arg3 : locale_t ) -> f64 ;
536
536
pub fn strtof_l ( arg1 : * const c_char , arg2 : * mut * mut c_char , arg3 : locale_t ) -> f32 ;
537
537
pub fn strtold_l ( arg1 : * const c_char , arg2 : * mut * mut c_char , arg3 : locale_t ) -> f64 ;
538
- pub fn _Exit ( arg1 : c_int ) ;
539
- pub fn abort ( ) ;
538
+ pub fn _Exit ( arg1 : c_int ) -> ! ;
539
+ pub fn abort ( ) -> ! ;
540
540
pub fn abs ( arg1 : c_int ) -> c_int ;
541
541
pub fn atexit ( arg1 : :: Option < unsafe extern "C" fn ( ) > ) -> c_int ;
542
542
pub fn atoi ( arg1 : * const c_char ) -> c_int ;
@@ -553,7 +553,7 @@ extern "C" {
553
553
) -> * mut c_void ;
554
554
pub fn calloc ( arg1 : size_t , arg2 : size_t ) -> * mut c_void ;
555
555
pub fn div ( arg1 : c_int , arg2 : c_int ) -> div_t ;
556
- pub fn exit ( arg1 : c_int ) ;
556
+ pub fn exit ( arg1 : c_int ) -> ! ;
557
557
pub fn free ( arg1 : * mut c_void ) ;
558
558
pub fn getenv ( arg1 : * const c_char ) -> * mut c_char ;
559
559
pub fn labs ( arg1 : c_long ) -> c_long ;
You can’t perform that action at this time.
0 commit comments