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 @@ -970,6 +970,8 @@ getpriority
970
970
getprogname
971
971
getpwent
972
972
getpwnam_r
973
+ getresgid
974
+ getresuid
973
975
getrlimit
974
976
getrusage
975
977
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 @@ -1535,6 +1535,8 @@ extern "C" {
1535
1535
servlen : :: size_t ,
1536
1536
flags : :: c_int ,
1537
1537
) -> :: c_int ;
1538
+ pub fn getresgid ( rgid : * mut :: gid_t , egid : * mut :: gid_t , sgid : * mut :: gid_t ) -> :: c_int ;
1539
+ pub fn getresuid ( ruid : * mut :: uid_t , euid : * mut :: uid_t , suid : * mut :: uid_t ) -> :: c_int ;
1538
1540
pub fn kevent (
1539
1541
kq : :: c_int ,
1540
1542
changelist : * const :: kevent ,
You can’t perform that action at this time.
0 commit comments