Skip to content
Browse files

fix rustfmt on liballoc_system

  • Loading branch information...
1 parent 3e91dc8 commit 885f0851d05778ef3c9475cdc01e6b588e4ab531 @polymetric1 polymetric1 committed
Showing with 1 addition and 5 deletions.
  1. +1 −5 liballoc_system/lib.rs
View
6 liballoc_system/lib.rs
@@ -40,10 +40,6 @@ extern "C" {
fn __rust_allocate(size: usize, align: usize) -> *mut u8;
fn __rust_deallocate(ptr: *mut u8, old_size: usize, align: usize);
fn __rust_reallocate(ptr: *mut u8, old_size: usize, size: usize, align: usize) -> *mut u8;
- fn __rust_reallocate_inplace(ptr: *mut u8,
- old_size: usize,
- size: usize,
- align: usize)
- -> usize;
+ fn __rust_reallocate_inplace(ptr: *mut u8, old_size: usize, size: usize, align: usize) -> usize;
fn __rust_usable_size(size: usize, align: usize) -> usize;
}

0 comments on commit 885f085

Please sign in to comment.
Something went wrong with that request. Please try again.