2016-01-06 13:40:25 +00:00
|
|
|
// These functions are provided when not linking against libc because LLVM
|
|
|
|
// sometimes generates code that calls them.
|
|
|
|
|
2016-04-26 19:35:56 +01:00
|
|
|
#debug_safety(false)
|
2016-01-26 00:06:19 +00:00
|
|
|
export fn memset(dest: &u8, c: u8, n: isize) -> &u8 {
|
2016-01-14 01:15:51 +00:00
|
|
|
var index : @typeof(n) = 0;
|
2016-01-06 13:40:25 +00:00
|
|
|
while (index != n) {
|
|
|
|
dest[index] = c;
|
|
|
|
index += 1;
|
|
|
|
}
|
|
|
|
return dest;
|
|
|
|
}
|
|
|
|
|
2016-04-26 19:35:56 +01:00
|
|
|
#debug_safety(false)
|
2016-01-26 00:06:19 +00:00
|
|
|
export fn memcpy(noalias dest: &u8, noalias src: &const u8, n: isize) -> &u8 {
|
2016-01-14 01:15:51 +00:00
|
|
|
var index : @typeof(n) = 0;
|
2016-01-06 13:40:25 +00:00
|
|
|
while (index != n) {
|
|
|
|
dest[index] = src[index];
|
|
|
|
index += 1;
|
|
|
|
}
|
|
|
|
return dest;
|
|
|
|
}
|