xref: /original-bsd/sys/luna68k/include/stinger.h (revision e21485a6)
1 /*
2  * Copyright (c) 1992 OMRON Corporation.
3  * Copyright (c) 1992 The Regents of the University of California.
4  * All rights reserved.
5  *
6  * This code is derived from software contributed to Berkeley by
7  * OMRON Corporation.
8  *
9  * %sccs.include.redist.c%
10  *
11  *	@(#)stinger.h	7.1 (Berkeley) 06/15/92
12  */
13 
14 /*
15  * stinger.h -- Stinger Kernel Interface Definitions
16  * by A.Fujita, MAR-14-1992
17  *
18  * This file should be remade.
19  */
20 
21 #include "rdvar.h"
22 #include "memory.h"
23 
24 struct KernInter {
25 	caddr_t	  maxaddr;
26 	struct prgmem prg;
27 	int	  argc;
28 	char	**argv;
29 	struct rd_partition *rd;
30 };
31 
32