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 /arm64/include/u.h | |
parent | 8a8329ad952b0fced970cc0b83e5e87d4a5ceb7a (diff) | |
download | plan9front-e4b5f170cffd0d5e788d9090f8f2a9802fe267e9.tar.xz |
libc: change usize to 64-bit for amd64 and arm64, make memory(2) functions use usize
Diffstat (limited to 'arm64/include/u.h')
-rw-r--r-- | arm64/include/u.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arm64/include/u.h b/arm64/include/u.h index 94d9cc3b7..ca7037497 100644 --- a/arm64/include/u.h +++ b/arm64/include/u.h @@ -9,7 +9,7 @@ typedef long long vlong; typedef unsigned long long uvlong; typedef vlong intptr; typedef uvlong uintptr; -typedef unsigned long usize; +typedef unsigned long long usize; typedef uint Rune; typedef union FPdbleword FPdbleword; typedef uintptr jmp_buf[2]; |