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.
1 parent 74e81a5 commit a68d11dCopy full SHA for a68d11d
libc-test/semver/redox.txt
@@ -186,6 +186,7 @@ epoll_create1
186
epoll_ctl
187
epoll_event
188
epoll_wait
189
+explicit_bzero
190
fchdir
191
fmemopen
192
getline
src/unix/redox/mod.rs
@@ -1093,6 +1093,9 @@ extern "C" {
1093
// time.h
1094
pub fn gettimeofday(tp: *mut ::timeval, tz: *mut ::timezone) -> ::c_int;
1095
pub fn clock_gettime(clk_id: ::clockid_t, tp: *mut ::timespec) -> ::c_int;
1096
+
1097
+ // strings.h
1098
+ pub fn explicit_bzero(p: *mut ::c_void, len: ::size_t);
1099
}
1100
1101
cfg_if! {
0 commit comments