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/man/2/memory | |
parent | 8a8329ad952b0fced970cc0b83e5e87d4a5ceb7a (diff) |
libc: change usize to 64-bit for amd64 and arm64, make memory(2) functions use usize
Diffstat (limited to 'sys/man/2/memory')
-rw-r--r-- | sys/man/2/memory | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/man/2/memory b/sys/man/2/memory index 30c5cfb1e..348f929e7 100644 --- a/sys/man/2/memory +++ b/sys/man/2/memory @@ -8,22 +8,22 @@ memccpy, memchr, memcmp, memcpy, memmove, memset, tsmemcmp \- memory operations .PP .ta \w'\fLvoid* 'u .B -void* memccpy(void *s1, void *s2, int c, ulong n) +void* memccpy(void *s1, void *s2, int c, usize n) .PP .B -void* memchr(void *s, int c, ulong n) +void* memchr(void *s, int c, usize n) .PP .B -int memcmp(void *s1, void *s2, ulong n) +int memcmp(void *s1, void *s2, usize n) .PP .B -void* memcpy(void *s1, void *s2, ulong n) +void* memcpy(void *s1, void *s2, usize n) .PP .B -void* memmove(void *s1, void *s2, ulong n) +void* memmove(void *s1, void *s2, usize n) .PP .B -void* memset(void *s, int c, ulong n) +void* memset(void *s, int c, usize n) .PP .B #include <libsec.h> .PP |