harec

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 1fceaa3dc4dcdc5c6c5e92154e1d2b4def23d874
parent 2668d426f005dd158b5c1cf1d8d1110677e2322c
Author: Eyal Sawady <ecs@d2evs.net>
Date:   Wed, 30 Dec 2020 15:07:44 -0500

rt: memcmp: fix typo

Diffstat:
Mrt/memcmp.ha | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rt/memcmp.ha b/rt/memcmp.ha @@ -1,4 +1,4 @@ -export fn memcmp(a: *void, b: *void, amt: size) bool { +export fn memcmp(a: *void, b: *void, amt: size) bool = { let _a = a: *[*]u8, _b = b: *[*]u8; for (let i = 0z; i < amt; i += 1) { if (a[i] != b[i]) {