xref: /original-bsd/sys/vax/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.7 (Berkeley) 04/29/93
8  */
9 
10 #ifndef	_MACHTYPES_H_
11 #define	_MACHTYPES_H_
12 
13 typedef struct _physadr {
14 	int r[1];
15 } *physadr;
16 
17 typedef struct label_t {
18 	int val[14];
19 } label_t;
20 
21 typedef	char			   int8;	/* Basic integral types. */
22 typedef	unsigned char		 u_int8;
23 typedef	short			  int16;
24 typedef	unsigned short		u_int16;
25 typedef	int			  int32;
26 typedef	unsigned int		u_int32;
27 typedef	long long		  int64;
28 typedef	unsigned long long	u_int64;
29 
30 #endif	/* _MACHTYPES_H_ */
31