File tree 3 files changed +15
-6
lines changed
3 files changed +15
-6
lines changed Original file line number Diff line number Diff line change @@ -1363,6 +1363,14 @@ extern "C" {
1363
1363
1364
1364
pub fn aio_waitcomplete ( iocbp : * mut * mut aiocb , timeout : * mut :: timespec ) -> :: c_int ;
1365
1365
1366
+ #[ deprecated( since = "0.2.107" , note = "len should be of type size_t" ) ]
1367
+ pub fn devname_r (
1368
+ dev : :: dev_t ,
1369
+ mode : :: mode_t ,
1370
+ buf : * mut :: c_char ,
1371
+ len : :: c_int ,
1372
+ ) -> * mut :: c_char ;
1373
+
1366
1374
pub fn waitid (
1367
1375
idtype : idtype_t ,
1368
1376
id : :: id_t ,
Original file line number Diff line number Diff line change @@ -2009,6 +2009,13 @@ extern "C" {
2009
2009
) -> :: c_int ;
2010
2010
pub fn aio_write ( aiocbp : * mut aiocb ) -> :: c_int ;
2011
2011
2012
+ pub fn devname_r (
2013
+ dev : :: dev_t ,
2014
+ mode : :: mode_t ,
2015
+ buf : * mut :: c_char ,
2016
+ len : :: c_int ,
2017
+ ) -> * mut :: c_char ;
2018
+
2012
2019
pub fn extattr_delete_fd (
2013
2020
fd : :: c_int ,
2014
2021
attrnamespace : :: c_int ,
Original file line number Diff line number Diff line change @@ -1417,12 +1417,6 @@ extern "C" {
1417
1417
pub fn sem_init ( sem : * mut sem_t , pshared : :: c_int , value : :: c_uint ) -> :: c_int ;
1418
1418
1419
1419
pub fn daemon ( nochdir : :: c_int , noclose : :: c_int ) -> :: c_int ;
1420
- pub fn devname_r (
1421
- dev : :: dev_t ,
1422
- mode : :: mode_t ,
1423
- buf : * mut :: c_char ,
1424
- len : :: c_int ,
1425
- ) -> * mut :: c_char ;
1426
1420
pub fn gettimeofday ( tp : * mut :: timeval , tz : * mut :: timezone ) -> :: c_int ;
1427
1421
pub fn accept4 (
1428
1422
s : :: c_int ,
You can’t perform that action at this time.
0 commit comments