1 /* 2 * Copyright (c) 1992 The Regents of the University of California. 3 * All rights reserved. 4 * 5 * This software was developed by the Computer Systems Engineering group 6 * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and 7 * contributed to Berkeley. 8 * 9 * %sccs.include.redist.c% 10 * 11 * @(#)types.h 7.1 (Berkeley) 07/13/92 12 * 13 * from: $Header: types.h,v 1.4 92/06/17 06:10:30 torek Exp $ (LBL) 14 */ 15 16 #ifndef _MACHTYPES_H_ 17 #define _MACHTYPES_H_ 18 19 typedef struct _physadr { 20 short r[1]; 21 } *physadr; 22 typedef struct label_t { 23 int val[2]; 24 } label_t; 25 typedef u_long vm_offset_t; 26 typedef u_long vm_size_t; 27 28 #endif /* _MACHTYPES_H_ */ 29