Auto merge of #129 - pftbest:memset, r=japaric
Fix memset arguments for MSP430 target. On MSP430 second argument to memset has `i16` type instead of `i32`.
This commit is contained in:
commit
501d93ffe0
|
@ -1,3 +1,10 @@
|
||||||
|
#[allow(warnings)]
|
||||||
|
#[cfg(target_pointer_width = "16")]
|
||||||
|
type c_int = i16;
|
||||||
|
#[allow(warnings)]
|
||||||
|
#[cfg(not(target_pointer_width = "16"))]
|
||||||
|
type c_int = i32;
|
||||||
|
|
||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
pub unsafe extern "C" fn memcpy(dest: *mut u8,
|
pub unsafe extern "C" fn memcpy(dest: *mut u8,
|
||||||
src: *const u8,
|
src: *const u8,
|
||||||
|
@ -35,7 +42,7 @@ pub unsafe extern "C" fn memmove(dest: *mut u8,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
pub unsafe extern "C" fn memset(s: *mut u8, c: i32, n: usize) -> *mut u8 {
|
pub unsafe extern "C" fn memset(s: *mut u8, c: c_int, n: usize) -> *mut u8 {
|
||||||
let mut i = 0;
|
let mut i = 0;
|
||||||
while i < n {
|
while i < n {
|
||||||
*s.offset(i as isize) = c as u8;
|
*s.offset(i as isize) = c as u8;
|
||||||
|
|
Loading…
Reference in New Issue