diff options
Diffstat (limited to 'lib/std/cmp.myr')
-rw-r--r-- | lib/std/cmp.myr | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/std/cmp.myr b/lib/std/cmp.myr index c022b2e..15d2f98 100644 --- a/lib/std/cmp.myr +++ b/lib/std/cmp.myr @@ -10,9 +10,9 @@ pkg std = `After ;; - generic numcmp : (a : @a, b : @a -> order) - const strcmp : (a : byte[:], b : byte[:] -> order) - const strncmp : (a : byte[:], b : byte[:], n : size -> order) + generic numcmp : (a : @a, b : @a -> order) + const strcmp : (a : byte[:], b : byte[:] -> order) + const strncmp : (a : byte[:], b : byte[:], n : size -> order) const strcasecmp : (a : byte[:], b : byte[:] -> order) ;; |