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/memccpy.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/memccpy.c')
-rw-r--r-- | sys/src/libc/port/memccpy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/libc/port/memccpy.c b/sys/src/libc/port/memccpy.c index 9268ba72e..9fc3716c8 100644 --- a/sys/src/libc/port/memccpy.c +++ b/sys/src/libc/port/memccpy.c @@ -2,7 +2,7 @@ #include <libc.h> void* -memccpy(void *a1, void *a2, int c, ulong n) +memccpy(void *a1, void *a2, int c, usize n) { uchar *s1, *s2; |