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 802ff05 + 790172b commit 6fc98f1Copy full SHA for 6fc98f1
libc-test/semver/netbsd.txt
@@ -1155,6 +1155,9 @@ lchflags
1155
lio_listio
1156
localeconv_l
1157
lockf
1158
+login
1159
+logout
1160
+logwtmp
1161
login_tty
1162
lutimes
1163
lwpid_t
src/unix/bsd/netbsdlike/netbsd/mod.rs
@@ -2294,6 +2294,10 @@ extern "C" {
2294
denominator: ::intmax_t,
2295
precision: ::size_t,
2296
) -> *mut ::c_char;
2297
+ #[link_name = "__login50"]
2298
+ pub fn login(ut: *const utmp);
2299
+ pub fn logout(line: *const ::c_char);
2300
+ pub fn logwtmp(line: *const ::c_char, name: *const ::c_char, host: *const ::c_char);
2301
}
2302
2303
cfg_if! {
0 commit comments