diff options
author | cinap_lenrek <cinap_lenrek@gmx.de> | 2013-10-17 12:02:45 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@gmx.de> | 2013-10-17 12:02:45 +0200 |
commit | a5e964190697f7367e92628620baaee370c32f88 (patch) | |
tree | f0fc96abf5b9052a503d7bfe6af9025941dc8feb /sparc | |
parent | e30f50283c60e21763aa28def66deab70ae12187 (diff) | |
download | plan9front-a5e964190697f7367e92628620baaee370c32f88.tar.xz |
change Rune from ushort to uint for to 21 bit runes (thanks mischief!)
big big change. requires rebuilding 8c first and then rebuild
everything.
Diffstat (limited to 'sparc')
-rw-r--r-- | sparc/include/u.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sparc/include/u.h b/sparc/include/u.h index cc2cb1f97..fe9fbff2d 100644 --- a/sparc/include/u.h +++ b/sparc/include/u.h @@ -8,7 +8,7 @@ typedef long long vlong; typedef unsigned long long uvlong; typedef unsigned long uintptr; typedef unsigned long usize; -typedef ushort Rune; +typedef uint Rune; typedef union FPdbleword FPdbleword; typedef long jmp_buf[2]; #define JMPBUFSP 0 |