use the -newos toolchain even if -elf is present.
[newos.git] / include / arch / ppc / types.h
blobd88c8a910d5198e6b0294d8ab2fdb19bb0cb80b4
1 /*
2 ** Copyright 2001, Travis Geiselbrecht. All rights reserved.
3 ** Distributed under the terms of the NewOS License.
4 */
5 #ifndef _PPC_TYPES_H
6 #define _PPC_TYPES_H
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;
15 typedef int int32;
16 typedef volatile unsigned short vuint16;
17 typedef unsigned short uint16;
18 typedef volatile short vint16;
19 typedef short int16;
20 typedef volatile unsigned char vuint8;
21 typedef unsigned char uint8;
22 typedef volatile char vint8;
23 typedef char int8;
25 #endif