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