summaryrefslogtreecommitdiff
path: root/amd64/include/u.h
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2021-07-25 15:54:22 +0000
committercinap_lenrek <cinap_lenrek@felloff.net>2021-07-25 15:54:22 +0000
commite4b5f170cffd0d5e788d9090f8f2a9802fe267e9 (patch)
tree96369172e019fea9450bce7bc70b331a272eaa7a /amd64/include/u.h
parent8a8329ad952b0fced970cc0b83e5e87d4a5ceb7a (diff)
downloadplan9front-e4b5f170cffd0d5e788d9090f8f2a9802fe267e9.tar.xz
libc: change usize to 64-bit for amd64 and arm64, make memory(2) functions use usize
Diffstat (limited to 'amd64/include/u.h')
-rw-r--r--amd64/include/u.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/amd64/include/u.h b/amd64/include/u.h
index 17a684368..32978b115 100644
--- a/amd64/include/u.h
+++ b/amd64/include/u.h
@@ -8,7 +8,7 @@ typedef long long vlong;
typedef unsigned long long uvlong;
typedef long long intptr;
typedef unsigned long long uintptr;
-typedef unsigned long usize;
+typedef unsigned long long usize;
typedef uint Rune;
typedef union FPdbleword FPdbleword;
typedef uintptr jmp_buf[2];