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 800d799 commit 7d57f03Copy full SHA for 7d57f03
src/redox.rs
@@ -54,8 +54,10 @@ pub const STDERR_FILENO: ::c_int = 2;
54
55
extern {
56
pub fn memalign(align: ::size_t, size: ::size_t) -> *mut ::c_void;
57
- pub fn read(fd: ::c_int, buf: *mut ::c_void, count: ::size_t) -> ::ssize_t;
58
- pub fn write(fd: ::c_int, buf: *const ::c_void, count: ::size_t) -> ::ssize_t;
+ pub fn read(fd: ::c_int, buf: *mut ::c_void, count: ::size_t)
+ -> ::ssize_t;
59
+ pub fn write(fd: ::c_int, buf: *const ::c_void, count: ::size_t)
60
61
}
62
63
#[link(name = "c")]
0 commit comments