date and time created 92/03/09 14:24:21 by bostic
[unix-history] / usr / src / sys / pmax / include / types.h
CommitLineData
2966ca0e
KM
1/*-
2 * Copyright (c) 1992 Regents of the University of California.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Ralph Campbell.
7 *
8 * %sccs.include.redist.c%
9 *
10 * @(#)types.h 7.1 (Berkeley) %G%
11 */
12
13#ifndef _MACHTYPES_H_
14#define _MACHTYPES_H_
15
16typedef struct _physadr {
17 int r[1];
18} *physadr;
19
20typedef struct label_t {
21 int val[12];
22} label_t;
23
24typedef u_long vm_offset_t;
25typedef u_long vm_size_t;
26
27#endif /* _MACHTYPES_H_ */