From 16373257b083d7be4383dac820d3f7df166d26fe Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Mon, 27 Aug 2018 07:12:37 -0600 Subject: [PATCH] format --- src/header/strings/mod.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/header/strings/mod.rs b/src/header/strings/mod.rs index 77eb9ea0b1..d755295d76 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;