xref: /haiku/headers/private/kernel/arch/m68k/types.h (revision 0b2adc3d8e77d541e8ff2a22f223608d343fc65d)
1 /*
2 ** Copyright 2001, Travis Geiselbrecht. All rights reserved.
3 ** Distributed under the terms of the NewOS License.
4 */
5 #ifndef _M68K_TYPES_H
6 #define _M68K_TYPES_H
7 
8 typedef unsigned long long  uint64;
9 typedef long long            int64;
10 typedef unsigned int       uint32;
11 typedef int                 int32;
12 typedef unsigned short     uint16;
13 typedef short               int16;
14 typedef unsigned char      uint8;
15 typedef char                int8;
16 
17 #endif
18 
19