Skip to content

Commit f1dcfd0

Browse files
author
forsyth
committed
20100203-2048
1 parent ad7de9e commit f1dcfd0

17 files changed

Lines changed: 179 additions & 9 deletions

File tree

CHANGES

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
20100203
22
appl/lib/cfg.b treat \r as white space (issue 69, 70)
3+
add u64int to lib9.h files that needed it
4+
add sha2.c sha256block.c sha512block.c to libsec/port and include/libsec.h
5+
add new sha functions to module/keyring.m and libinterp/keyring.c
36
20100115
47
appl/cmd/tarfs.b man/4/tarfs changes to permission handling from mechiel [issue 220]
58
appl/spree/mkfile add explicit -I$ROOT/module [issue 209, powerman]

FreeBSD/386/include/lib9.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ typedef unsigned short Rune;
4343
typedef long long int vlong;
4444
typedef unsigned long long int uvlong;
4545
typedef unsigned int u32int;
46+
typedef uvlong u64int;
47+
4648
typedef unsigned int mpdigit; /* for /sys/include/mp.h */
4749
typedef unsigned short u16int;
4850
typedef unsigned char u8int;

Irix/mips/include/lib9.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ typedef unsigned short Rune;
2929
typedef long long int vlong;
3030
typedef unsigned long long int uvlong;
3131
typedef unsigned int u32int;
32+
typedef uvlong u64int;
33+
3234
typedef unsigned int mpdigit; /* for /sys/include/mp.h */
3335
typedef unsigned short u16int;
3436
typedef unsigned char u8int;

Linux/386/include/lib9.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ typedef unsigned short Rune;
4141
typedef long long int vlong;
4242
typedef unsigned long long int uvlong;
4343
typedef unsigned int u32int;
44+
typedef uvlong u64int;
45+
4446
typedef unsigned int mpdigit; /* for /sys/include/mp.h */
4547
typedef unsigned short u16int;
4648
typedef unsigned char u8int;

Linux/arm/include/lib9.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ typedef unsigned short Rune;
4141
typedef long long int vlong;
4242
typedef unsigned long long int uvlong;
4343
typedef unsigned int u32int;
44+
typedef uvlong u64int;
45+
4446
typedef unsigned int mpdigit; /* for /sys/include/mp.h */
4547
typedef unsigned short u16int;
4648
typedef unsigned char u8int;

Linux/power/include/lib9.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ typedef unsigned short Rune;
4242
typedef long long int vlong;
4343
typedef unsigned long long int uvlong;
4444
typedef unsigned int u32int;
45+
typedef uvlong u64int;
46+
4547
typedef unsigned int mpdigit; /* for /sys/include/mp.h */
4648
typedef unsigned short u16int;
4749
typedef unsigned char u8int;

Linux/spim/include/lib9.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ typedef unsigned short Rune;
4646
typedef long long int vlong;
4747
typedef unsigned long long int uvlong;
4848
typedef unsigned int u32int;
49+
typedef uvlong u64int;
50+
4951
typedef unsigned int mpdigit; /* for /sys/include/mp.h */
5052
typedef unsigned short u16int;
5153
typedef unsigned char u8int;

MacOSX/386/include/lib9.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ typedef long long vlong;
3636
typedef unsigned long long uvlong;
3737
typedef ushort Rune;
3838
typedef unsigned int u32int;
39+
typedef uvlong u64int;
40+
3941
typedef unsigned int mpdigit; /* for /sys/include/mp.h */
4042
typedef unsigned short u16int;
4143
typedef unsigned char u8int;

MacOSX/power/include/lib9.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ typedef long long vlong;
3636
typedef unsigned long long uvlong;
3737
typedef ushort Rune;
3838
typedef unsigned int u32int;
39+
typedef uvlong u64int;
40+
3941
typedef unsigned int mpdigit; /* for /sys/include/mp.h */
4042
typedef unsigned short u16int;
4143
typedef unsigned char u8int;

NetBSD/386/include/lib9.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ typedef uint64_t uvlong;
4545
typedef uint8_t u8int;
4646
typedef uint16_t u16int;
4747
typedef uint32_t u32int;
48+
typedef uvlong u64int;
49+
4850
typedef uintptr_t uintptr;
4951

5052
typedef unsigned short Rune;

0 commit comments

Comments
 (0)