File tree Expand file tree Collapse file tree 5 files changed +10
-0
lines changed Expand file tree Collapse file tree 5 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -1263,6 +1263,8 @@ getprogname
1263
1263
getpwent
1264
1264
getpwent_r
1265
1265
getpwnam_r
1266
+ getresgid
1267
+ getresuid
1266
1268
getrlimit
1267
1269
getrusage
1268
1270
getservbyport
Original file line number Diff line number Diff line change @@ -1501,6 +1501,8 @@ getprogname
1501
1501
getpwent
1502
1502
getpwent_r
1503
1503
getpwnam_r
1504
+ getresgid
1505
+ getresuid
1504
1506
getrlimit
1505
1507
getrusage
1506
1508
getservbyport
Original file line number Diff line number Diff line change @@ -963,6 +963,8 @@ getpriority
963
963
getprogname
964
964
getpwent
965
965
getpwnam_r
966
+ getresgid
967
+ getresuid
966
968
getrlimit
967
969
getrusage
968
970
getservbyport
Original file line number Diff line number Diff line change @@ -1477,6 +1477,8 @@ extern "C" {
1477
1477
flags : :: c_int ,
1478
1478
) -> :: c_int ;
1479
1479
pub fn getpriority ( which : :: c_int , who : :: c_int ) -> :: c_int ;
1480
+ pub fn getresgid ( rgid : * mut :: gid_t , egid : * mut :: gid_t , sgid : * mut :: gid_t ) -> :: c_int ;
1481
+ pub fn getresuid ( ruid : * mut :: uid_t , euid : * mut :: uid_t , suid : * mut :: uid_t ) -> :: c_int ;
1480
1482
pub fn getutxent ( ) -> * mut utmpx ;
1481
1483
pub fn getutxid ( ut : * const utmpx ) -> * mut utmpx ;
1482
1484
pub fn getutxline ( ut : * const utmpx ) -> * mut utmpx ;
Original file line number Diff line number Diff line change @@ -1527,6 +1527,8 @@ extern "C" {
1527
1527
servlen : :: size_t ,
1528
1528
flags : :: c_int ,
1529
1529
) -> :: c_int ;
1530
+ pub fn getresgid ( rgid : * mut :: gid_t , egid : * mut :: gid_t , sgid : * mut :: gid_t ) -> :: c_int ;
1531
+ pub fn getresuid ( ruid : * mut :: uid_t , euid : * mut :: uid_t , suid : * mut :: uid_t ) -> :: c_int ;
1530
1532
pub fn kevent (
1531
1533
kq : :: c_int ,
1532
1534
changelist : * const :: kevent ,
You can’t perform that action at this time.
0 commit comments