File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed
src/unix/linux_like/linux/gnu Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -589,9 +589,11 @@ futimes
589589getauxval
590590getentropy
591591getgrent_r
592+ fgetgrent_r
592593getloadavg
593594getpt
594595getpwent_r
596+ fgetpwent_r
595597getpwnam_r
596598getspent_r
597599getutxent
Original file line number Diff line number Diff line change @@ -1310,6 +1310,20 @@ extern "C" {
13101310 buflen : :: size_t ,
13111311 result : * mut * mut :: group ,
13121312 ) -> :: c_int ;
1313+ pub fn fgetpwent_r (
1314+ stream : * mut :: FILE ,
1315+ pwd : * mut :: passwd ,
1316+ buf : * mut :: c_char ,
1317+ buflen : :: size_t ,
1318+ result : * mut * mut :: passwd ,
1319+ ) -> :: c_int ;
1320+ pub fn fgetgrent_r (
1321+ stream : * mut :: FILE ,
1322+ grp : * mut :: group ,
1323+ buf : * mut :: c_char ,
1324+ buflen : :: size_t ,
1325+ result : * mut * mut :: group ,
1326+ ) -> :: c_int ;
13131327
13141328 pub fn sethostid ( hostid : :: c_long ) -> :: c_int ;
13151329
You can’t perform that action at this time.
0 commit comments