Skip to content

Commit

Permalink
printf: Fix too long line
Browse files Browse the repository at this point in the history
  • Loading branch information
bluss committed Apr 13, 2016
1 parent 9111f24 commit 1ebfe63
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/unix/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,8 @@ cfg_if! {
}

extern {
pub fn fprintf(stream: *mut ::FILE, format: *const ::c_char, ...) -> ::c_int;
pub fn fprintf(stream: *mut ::FILE,
format: *const ::c_char, ...) -> ::c_int;
pub fn printf(format: *const ::c_char, ...) -> ::c_int;
pub fn snprintf(s: *mut ::c_char, n: ::size_t,
format: *const ::c_char, ...) -> ::c_int;
Expand Down

0 comments on commit 1ebfe63

Please sign in to comment.