We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 971645b commit 20893e4Copy full SHA for 20893e4
libc-test/semver/solarish.txt
@@ -7,6 +7,17 @@ IP_PKTINFO
7
IP_TOS
8
IP_TTL
9
PIPE_BUF
10
+SIGEV_PORT
11
+aio_cancel
12
+aio_error
13
+aio_fsync
14
+aio_read
15
+aio_result_t
16
+aio_return
17
+aio_suspend
18
+aio_waitn
19
+aio_write
20
+aiocb
21
bind
22
in6_pktinfo
23
in_pktinfo
src/unix/solarish/mod.rs
@@ -3048,6 +3048,10 @@ extern "C" {
3048
pub fn __major(version: ::c_int, devnum: ::dev_t) -> ::major_t;
3049
pub fn __minor(version: ::c_int, devnum: ::dev_t) -> ::minor_t;
3050
pub fn __makedev(version: ::c_int, majdev: ::major_t, mindev: ::minor_t) -> ::dev_t;
3051
+
3052
+ pub fn arc4random() -> u32;
3053
+ pub fn arc4random_buf(buf: *mut ::c_void, nbytes: ::size_t);
3054
+ pub fn arc4random_uniform(upper_bound: u32) -> u32;
3055
}
3056
3057
#[link(name = "sendfile")]
0 commit comments