xref: /original-bsd/sys/hp300/include/types.h (revision 50ed812d)
1 /*-
2  * Copyright (c) 1990 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)types.h	7.11 (Berkeley) 04/29/93
8  */
9 
10 #ifndef	_MACHTYPES_H_
11 #define	_MACHTYPES_H_
12 
13 typedef struct _physadr {
14 	short r[1];
15 } *physadr;
16 
17 typedef struct label_t {			/* Consistent with HP-UX. */
18 	int val[15];
19 } label_t;
20 
21 typedef	u_long	vm_offset_t;
22 typedef	u_long	vm_size_t;
23 
24 typedef	char			   int8;	/* Basic integral types. */
25 typedef	unsigned char		 u_int8;
26 typedef	short			  int16;
27 typedef	unsigned short		u_int16;
28 typedef	int			  int32;
29 typedef	unsigned int		u_int32;
30 typedef	long long		  int64;
31 typedef	unsigned long long	u_int64;
32 
33 #endif	/* _MACHTYPES_H_ */
34