diff options
| author | Charles Forsyth <charles.forsyth@gmail.com> | 2013-06-08 07:17:20 +0000 |
|---|---|---|
| committer | Charles Forsyth <charles.forsyth@gmail.com> | 2013-06-08 07:17:20 +0000 |
| commit | 1981fff245dfce579ef416fa767eb69d462039e9 (patch) | |
| tree | acc61d7982e0fddfcd22e1cc64472ecf53f2a8db | |
| parent | 9f260b3b399e71fd86b7d17ee3303f06fbee8da5 (diff) | |
Rune from ushort to uint
| -rw-r--r-- | Inferno/386/include/u.h | 2 | ||||
| -rw-r--r-- | Inferno/arm/include/u.h | 2 | ||||
| -rw-r--r-- | Inferno/mips/include/u.h | 2 | ||||
| -rw-r--r-- | Inferno/power/include/u.h | 2 | ||||
| -rw-r--r-- | Inferno/sparc/include/u.h | 2 | ||||
| -rw-r--r-- | Inferno/spim/include/u.h | 2 | ||||
| -rw-r--r-- | Inferno/thumb/include/u.h | 2 | ||||
| -rw-r--r-- | Plan9/arm/include/u.h | 2 | ||||
| -rw-r--r-- | Plan9/mips/include/u.h | 2 | ||||
| -rw-r--r-- | Plan9/power/include/u.h | 2 | ||||
| -rw-r--r-- | Plan9/sparc/include/u.h | 2 |
11 files changed, 11 insertions, 11 deletions
diff --git a/Inferno/386/include/u.h b/Inferno/386/include/u.h index 5c07da93..fc13e92b 100644 --- a/Inferno/386/include/u.h +++ b/Inferno/386/include/u.h @@ -7,7 +7,7 @@ typedef signed char schar; typedef long long vlong; typedef unsigned long long uvlong; typedef unsigned long uintptr; -typedef ushort Rune; +typedef uint Rune; typedef union FPdbleword FPdbleword; typedef long jmp_buf[2]; #define JMPBUFSP 0 diff --git a/Inferno/arm/include/u.h b/Inferno/arm/include/u.h index e3d6e897..ddefe4f4 100644 --- a/Inferno/arm/include/u.h +++ b/Inferno/arm/include/u.h @@ -7,7 +7,7 @@ typedef unsigned int uint; typedef signed char schar; typedef long long vlong; typedef unsigned long long uvlong; -typedef ushort Rune; +typedef uint Rune; typedef union FPdbleword FPdbleword; typedef long jmp_buf[2]; #define JMPBUFSP 0 diff --git a/Inferno/mips/include/u.h b/Inferno/mips/include/u.h index 9df12bff..eb908e6d 100644 --- a/Inferno/mips/include/u.h +++ b/Inferno/mips/include/u.h @@ -7,7 +7,7 @@ typedef signed char schar; typedef long long vlong; typedef unsigned long long uvlong; typedef unsigned long uintptr; -typedef ushort Rune; +typedef uint Rune; typedef union FPdbleword FPdbleword; typedef long jmp_buf[2]; #define JMPBUFSP 0 diff --git a/Inferno/power/include/u.h b/Inferno/power/include/u.h index 61e7d236..2108776a 100644 --- a/Inferno/power/include/u.h +++ b/Inferno/power/include/u.h @@ -7,7 +7,7 @@ typedef signed char schar; typedef long long vlong; typedef unsigned long long uvlong; typedef unsigned long uintptr; -typedef ushort Rune; +typedef uint Rune; typedef union FPdbleword FPdbleword; typedef long jmp_buf[2]; #define JMPBUFSP 0 diff --git a/Inferno/sparc/include/u.h b/Inferno/sparc/include/u.h index 6c0bd3f2..ff9a3eaf 100644 --- a/Inferno/sparc/include/u.h +++ b/Inferno/sparc/include/u.h @@ -7,7 +7,7 @@ typedef signed char schar; typedef long long vlong; typedef unsigned long long uvlong; typedef unsigned long uintptr; -typedef ushort Rune; +typedef uint Rune; typedef union FPdbleword FPdbleword; typedef long jmp_buf[2]; #define JMPBUFSP 0 diff --git a/Inferno/spim/include/u.h b/Inferno/spim/include/u.h index 8a57b3a2..5181c25d 100644 --- a/Inferno/spim/include/u.h +++ b/Inferno/spim/include/u.h @@ -6,7 +6,7 @@ typedef unsigned int uint; typedef signed char schar; typedef long long vlong; typedef unsigned long long uvlong; -typedef ushort Rune; +typedef uint Rune; typedef union FPdbleword FPdbleword; typedef long jmp_buf[2]; #define JMPBUFSP 0 diff --git a/Inferno/thumb/include/u.h b/Inferno/thumb/include/u.h index 2ab381d2..a65431ad 100644 --- a/Inferno/thumb/include/u.h +++ b/Inferno/thumb/include/u.h @@ -7,7 +7,7 @@ typedef unsigned int uint; typedef signed char schar; typedef long long vlong; typedef unsigned long long uvlong; -typedef ushort Rune; +typedef uint Rune; typedef union FPdbleword FPdbleword; typedef long jmp_buf[2]; #define JMPBUFSP 0 diff --git a/Plan9/arm/include/u.h b/Plan9/arm/include/u.h index e3d6e897..ddefe4f4 100644 --- a/Plan9/arm/include/u.h +++ b/Plan9/arm/include/u.h @@ -7,7 +7,7 @@ typedef unsigned int uint; typedef signed char schar; typedef long long vlong; typedef unsigned long long uvlong; -typedef ushort Rune; +typedef uint Rune; typedef union FPdbleword FPdbleword; typedef long jmp_buf[2]; #define JMPBUFSP 0 diff --git a/Plan9/mips/include/u.h b/Plan9/mips/include/u.h index 9df12bff..eb908e6d 100644 --- a/Plan9/mips/include/u.h +++ b/Plan9/mips/include/u.h @@ -7,7 +7,7 @@ typedef signed char schar; typedef long long vlong; typedef unsigned long long uvlong; typedef unsigned long uintptr; -typedef ushort Rune; +typedef uint Rune; typedef union FPdbleword FPdbleword; typedef long jmp_buf[2]; #define JMPBUFSP 0 diff --git a/Plan9/power/include/u.h b/Plan9/power/include/u.h index 61e7d236..2108776a 100644 --- a/Plan9/power/include/u.h +++ b/Plan9/power/include/u.h @@ -7,7 +7,7 @@ typedef signed char schar; typedef long long vlong; typedef unsigned long long uvlong; typedef unsigned long uintptr; -typedef ushort Rune; +typedef uint Rune; typedef union FPdbleword FPdbleword; typedef long jmp_buf[2]; #define JMPBUFSP 0 diff --git a/Plan9/sparc/include/u.h b/Plan9/sparc/include/u.h index 6c0bd3f2..ff9a3eaf 100644 --- a/Plan9/sparc/include/u.h +++ b/Plan9/sparc/include/u.h @@ -7,7 +7,7 @@ typedef signed char schar; typedef long long vlong; typedef unsigned long long uvlong; typedef unsigned long uintptr; -typedef ushort Rune; +typedef uint Rune; typedef union FPdbleword FPdbleword; typedef long jmp_buf[2]; #define JMPBUFSP 0 |
