File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -1228,7 +1228,7 @@ pub mod module {
1228
1228
}
1229
1229
1230
1230
#[ pyfunction]
1231
- const fn sync ( ) {
1231
+ fn sync ( ) {
1232
1232
#[ cfg( not( any( target_os = "redox" , target_os = "android" ) ) ) ]
1233
1233
unsafe {
1234
1234
libc:: sync ( ) ;
@@ -1603,32 +1603,32 @@ pub mod module {
1603
1603
}
1604
1604
1605
1605
#[ pyfunction( name = "WIFSIGNALED" ) ]
1606
- const fn wifsignaled ( status : i32 ) -> bool {
1606
+ fn wifsignaled ( status : i32 ) -> bool {
1607
1607
libc:: WIFSIGNALED ( status)
1608
1608
}
1609
1609
1610
1610
#[ pyfunction( name = "WIFSTOPPED" ) ]
1611
- const fn wifstopped ( status : i32 ) -> bool {
1611
+ fn wifstopped ( status : i32 ) -> bool {
1612
1612
libc:: WIFSTOPPED ( status)
1613
1613
}
1614
1614
1615
1615
#[ pyfunction( name = "WIFEXITED" ) ]
1616
- const fn wifexited ( status : i32 ) -> bool {
1616
+ fn wifexited ( status : i32 ) -> bool {
1617
1617
libc:: WIFEXITED ( status)
1618
1618
}
1619
1619
1620
1620
#[ pyfunction( name = "WTERMSIG" ) ]
1621
- const fn wtermsig ( status : i32 ) -> i32 {
1621
+ fn wtermsig ( status : i32 ) -> i32 {
1622
1622
libc:: WTERMSIG ( status)
1623
1623
}
1624
1624
1625
1625
#[ pyfunction( name = "WSTOPSIG" ) ]
1626
- const fn wstopsig ( status : i32 ) -> i32 {
1626
+ fn wstopsig ( status : i32 ) -> i32 {
1627
1627
libc:: WSTOPSIG ( status)
1628
1628
}
1629
1629
1630
1630
#[ pyfunction( name = "WEXITSTATUS" ) ]
1631
- const fn wexitstatus ( status : i32 ) -> i32 {
1631
+ fn wexitstatus ( status : i32 ) -> i32 {
1632
1632
libc:: WEXITSTATUS ( status)
1633
1633
}
1634
1634
You can’t perform that action at this time.
0 commit comments