We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99869e0 commit 6d959f1Copy full SHA for 6d959f1
libc-test/build.rs
@@ -664,6 +664,9 @@ fn main() {
664
// the symbol.
665
"uname" if freebsd => true,
666
667
+ // FIXME: need to upgrade FreeBSD version; see https://github.com/rust-lang/libc/issues/938
668
+ "setgrent" if freebsd => true,
669
+
670
// aio_waitcomplete's return type changed between FreeBSD 10 and 11.
671
"aio_waitcomplete" if freebsd => true,
672
src/unix/bsd/netbsdlike/mod.rs
@@ -642,7 +642,6 @@ extern {
642
buf: *mut ::c_char,
643
buflen: ::size_t,
644
result: *mut *mut ::passwd) -> ::c_int;
645
- #[cfg_attr(target_os = "netbsd", link_name = "__getgrent_r50")]
646
pub fn getgrent_r(grp: *mut ::group,
647
648
0 commit comments