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 @@ -1370,6 +1370,14 @@ extern "C" {
1370
1370
1371
1371
pub fn aio_waitcomplete ( iocbp : * mut * mut aiocb , timeout : * mut :: timespec ) -> :: c_int ;
1372
1372
1373
+ #[ deprecated( since = "0.2.107" , note = "len should be of type size_t" ) ]
1374
+ pub fn devname_r (
1375
+ dev : :: dev_t ,
1376
+ mode : :: mode_t ,
1377
+ buf : * mut :: c_char ,
1378
+ len : :: c_int ,
1379
+ ) -> * mut :: c_char ;
1380
+
1373
1381
pub fn waitid (
1374
1382
idtype : idtype_t ,
1375
1383
id : :: id_t ,
Original file line number Diff line number Diff line change @@ -2038,6 +2038,13 @@ extern "C" {
2038
2038
) -> :: c_int ;
2039
2039
pub fn aio_write ( aiocbp : * mut aiocb ) -> :: c_int ;
2040
2040
2041
+ pub fn devname_r (
2042
+ dev : :: dev_t ,
2043
+ mode : :: mode_t ,
2044
+ buf : * mut :: c_char ,
2045
+ len : :: c_int ,
2046
+ ) -> * mut :: c_char ;
2047
+
2041
2048
pub fn extattr_delete_fd (
2042
2049
fd : :: c_int ,
2043
2050
attrnamespace : :: c_int ,
Original file line number Diff line number Diff line change @@ -1416,12 +1416,6 @@ extern "C" {
1416
1416
pub fn sem_init ( sem : * mut sem_t , pshared : :: c_int , value : :: c_uint ) -> :: c_int ;
1417
1417
1418
1418
pub fn daemon ( nochdir : :: c_int , noclose : :: c_int ) -> :: c_int ;
1419
- pub fn devname_r (
1420
- dev : :: dev_t ,
1421
- mode : :: mode_t ,
1422
- buf : * mut :: c_char ,
1423
- len : :: c_int ,
1424
- ) -> * mut :: c_char ;
1425
1419
pub fn gettimeofday ( tp : * mut :: timeval , tz : * mut :: timezone ) -> :: c_int ;
1426
1420
pub fn accept4 (
1427
1421
s : :: c_int ,
You can’t perform that action at this time.
0 commit comments