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.
test_cmsg_nxthdr
1 parent b015d4e commit 4d5f5afCopy full SHA for 4d5f5af
libc-test/test/cmsg.rs
@@ -11,8 +11,6 @@ mod t {
11
12
extern "C" {
13
pub fn cmsg_firsthdr(msgh: *const msghdr) -> *mut cmsghdr;
14
- // see below
15
- #[cfg(not(target_arch = "sparc64"))]
16
pub fn cmsg_nxthdr(mhdr: *const msghdr, cmsg: *const cmsghdr) -> *mut cmsghdr;
17
pub fn cmsg_space(length: c_uint) -> usize;
18
pub fn cmsg_len(length: c_uint) -> usize;
@@ -51,9 +49,6 @@ mod t {
51
49
}
52
50
53
54
- // Skip on sparc64
55
- // https://github.com/rust-lang/libc/issues/1239
56
57
#[test]
58
fn test_cmsg_nxthdr() {
59
use std::ptr;
0 commit comments