Skip to content

Commit 919dd7c

Browse files
committed
Fix style
1 parent 15085c2 commit 919dd7c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/redox/mod.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,11 @@ extern {
126126
pub fn getpid() -> pid_t;
127127
pub fn memalign(align: ::size_t, size: ::size_t) -> *mut ::c_void;
128128
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;
129+
pub fn setenv(name: *const c_char, val: *const c_char, overwrite: ::c_int)
130+
-> ::c_int;
130131
pub fn unsetenv(name: *const c_char) -> ::c_int;
131-
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;
132134
}
133135

134136
#[link(name = "c")]

0 commit comments

Comments
 (0)