Jeremy Soller 6 년 전
부모
커밋
16373257b0
1개의 변경된 파일1개의 추가작업 그리고 5개의 파일을 삭제
  1. 1 5
      src/header/strings/mod.rs

+ 1 - 5
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;