ref: cf7a20e80d1bf21c24db48d430f6603f1e82a45e
parent: 8ccd239d70ff98001c857e8ebf8fb509b64477d4
author: Michael Forney <mforney@mforney.org>
date: Sat Jun 17 07:24:58 EDT 2017
Fix parameter names in memblit/memfill signatures
--- a/lib/std/memops.myr
+++ b/lib/std/memops.myr
@@ -1,7 +1,7 @@
use "types"
pkg std =
- pkglocal extern const memblit : (src : byte#, dst : byte#, len : std.size -> void)
- pkglocal extern const memfill : (src : byte#, val : byte, len : std.size -> void)
+ pkglocal extern const memblit : (dst : byte#, src : byte#, len : std.size -> void)
+ pkglocal extern const memfill : (dst : byte#, val : byte, len : std.size -> void)
;;