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 15085c2 commit 919dd7cCopy full SHA for 919dd7c
src/redox/mod.rs
@@ -126,9 +126,11 @@ extern {
126
pub fn getpid() -> pid_t;
127
pub fn memalign(align: ::size_t, size: ::size_t) -> *mut ::c_void;
128
pub fn read(fd: ::c_int, buf: *mut ::c_void, count: ::size_t) -> ::ssize_t;
129
- pub fn setenv(name: *const c_char, val: *const c_char, overwrite: ::c_int) -> ::c_int;
+ pub fn setenv(name: *const c_char, val: *const c_char, overwrite: ::c_int)
130
+ -> ::c_int;
131
pub fn unsetenv(name: *const c_char) -> ::c_int;
- pub fn write(fd: ::c_int, buf: *const ::c_void, count: ::size_t) -> ::ssize_t;
132
+ pub fn write(fd: ::c_int, buf: *const ::c_void, count: ::size_t)
133
+ -> ::ssize_t;
134
}
135
136
#[link(name = "c")]
0 commit comments