diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2021-07-25 15:54:22 +0000 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2021-07-25 15:54:22 +0000 |
commit | e4b5f170cffd0d5e788d9090f8f2a9802fe267e9 (patch) | |
tree | 96369172e019fea9450bce7bc70b331a272eaa7a /sys/src/libc/port/memcmp.c | |
parent | 8a8329ad952b0fced970cc0b83e5e87d4a5ceb7a (diff) |
libc: change usize to 64-bit for amd64 and arm64, make memory(2) functions use usize
Diffstat (limited to 'sys/src/libc/port/memcmp.c')
-rw-r--r-- | sys/src/libc/port/memcmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/libc/port/memcmp.c b/sys/src/libc/port/memcmp.c index 211752b03..f33a8690b 100644 --- a/sys/src/libc/port/memcmp.c +++ b/sys/src/libc/port/memcmp.c @@ -2,7 +2,7 @@ #include <libc.h> int -memcmp(void *a1, void *a2, ulong n) +memcmp(void *a1, void *a2, usize n) { uchar *s1, *s2; uint c1, c2; |