diff --git a/src/header/strings/mod.rs b/src/header/strings/mod.rs
index 77eb9ea0b1ba871ee7b11a5b41922f77a2d24d54..d755295d76b128c9c5f3c21e617dce61a7bbcd35 100644
--- a/src/header/strings/mod.rs
+++ b/src/header/strings/mod.rs
@@ -6,11 +6,7 @@ use core::ptr;
 use platform::types::*;
 
 #[no_mangle]
-pub unsafe extern "C" fn bcmp(
-    first: *const c_void,
-    second: *const c_void,
-    n: size_t,
-) -> c_int {
+pub unsafe extern "C" fn bcmp(first: *const c_void, second: *const c_void, n: size_t) -> c_int {
     let first = first as *const c_char;
     let second = second as *const c_char;