2 ** Copyright 2001, Travis Geiselbrecht. All rights reserved.
3 ** Distributed under the terms of the NewOS License.
8 typedef volatile unsigned long long vuint64
;
9 typedef unsigned long long uint64
;
10 typedef volatile long long vint64
;
11 typedef long long int64
;
12 typedef volatile unsigned int vuint32
;
13 typedef unsigned int uint32
;
14 typedef volatile int vint32
;
16 typedef volatile unsigned short vuint16
;
17 typedef unsigned short uint16
;
18 typedef volatile short vint16
;
20 typedef volatile unsigned char vuint8
;
21 typedef unsigned char uint8
;
22 typedef volatile char vint8
;