Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions libc-test/semver/apple.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1937,6 +1937,7 @@ initgroups
integer_t
ip_mreqn
ipc_perm
issetugid
kern_return_t
kevent
kevent64
Expand Down
1 change: 1 addition & 0 deletions libc-test/semver/dragonfly.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1403,6 +1403,7 @@ if_nameindex
ifaddrs
in6_pktinfo
initgroups
issetugid
jrand48
kevent
killpg
Expand Down
1 change: 1 addition & 0 deletions libc-test/semver/freebsd.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2043,6 +2043,7 @@ input_absinfo
input_event
ip_mreqn
ipc_perm
issetugid
jail
jail_attach
jail_get
Expand Down
1 change: 1 addition & 0 deletions libc-test/semver/netbsd.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1402,6 +1402,7 @@ in6_pktinfo
in_pktinfo
initgroups
ipc_perm
issetugid
itimerspec
jrand48
kevent
Expand Down
1 change: 1 addition & 0 deletions libc-test/semver/openbsd.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1169,6 +1169,7 @@ initgroups
ip_mreqn
ipc_perm
iso_args
issetugid
jrand48
kevent
key_t
Expand Down
2 changes: 2 additions & 0 deletions src/unix/bsd/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -944,6 +944,8 @@ extern "C" {
) -> size_t;

pub fn devname(dev: crate::dev_t, mode_t: crate::mode_t) -> *mut c_char;

pub fn issetugid() -> c_int;
}

cfg_if! {
Expand Down
Loading