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.
2 parents 27ce4ff + 03f74bf commit 4883c82Copy full SHA for 4883c82
libc-test/semver/dragonfly.txt
@@ -1320,6 +1320,8 @@ getitimer
1320
getlastlogx
1321
getline
1322
getloadavg
1323
+getmntinfo
1324
+getmntvinfo
1325
getnameinfo
1326
getopt_long
1327
getpeereid
src/unix/bsd/freebsdlike/dragonfly/mod.rs
@@ -1678,6 +1678,12 @@ extern "C" {
1678
1679
pub fn dirname(path: *mut ::c_char) -> *mut ::c_char;
1680
pub fn basename(path: *mut ::c_char) -> *mut ::c_char;
1681
+ pub fn getmntinfo(mntbufp: *mut *mut ::statfs, flags: ::c_int) -> ::c_int;
1682
+ pub fn getmntvinfo(
1683
+ mntbufp: *mut *mut ::statfs,
1684
+ mntvbufp: *mut *mut ::statvfs,
1685
+ flags: ::c_int,
1686
+ ) -> ::c_int;
1687
}
1688
1689
#[link(name = "rt")]
0 commit comments