We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents afce856 + ac00e0c commit 9469613Copy full SHA for 9469613
libc-test/semver/linux-gnu.txt
@@ -654,3 +654,5 @@ dirname
654
posix_basename
655
gnu_basename
656
getmntent_r
657
+putpwent
658
+putgrent
src/unix/linux_like/linux/gnu/mod.rs
@@ -1302,6 +1302,9 @@ extern "C" {
1302
result: *mut *mut ::group,
1303
) -> ::c_int;
1304
1305
+ pub fn putpwent(p: *const ::passwd, stream: *mut ::FILE) -> ::c_int;
1306
+ pub fn putgrent(grp: *const ::group, stream: *mut ::FILE) -> ::c_int;
1307
+
1308
pub fn sethostid(hostid: ::c_long) -> ::c_int;
1309
1310
pub fn memfd_create(name: *const ::c_char, flags: ::c_uint) -> ::c_int;
0 commit comments