core/intrinsics: Add mem_zero_volatile

This commit is contained in:
Yawning Angel
2021-10-31 21:37:22 +00:00
parent ff36bd3d85
commit 796a0c3968
5 changed files with 19 additions and 4 deletions
+1
View File
@@ -39,6 +39,7 @@ sqrt :: proc(x: $T) -> T where type_is_float(T) ---
mem_copy :: proc(dst, src: rawptr, len: int) ---
mem_copy_non_overlapping :: proc(dst, src: rawptr, len: int) ---
mem_zero :: proc(ptr: rawptr, len: int) ---
mem_zero_volatile :: proc(ptr: rawptr, len: int) ---
fixed_point_mul :: proc(lhs, rhs: $T, #const scale: uint) -> T where type_is_integer(T) ---