xref: /original-bsd/sys/vax/include/types.h (revision 2d1a7683)
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.5 (Berkeley) 03/09/91
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 #endif	/* _MACHTYPES_H_ */
22