Recover from some include file foo.

This commit is contained in:
mjacob 1997-10-17 18:47:30 +00:00
parent d383eb0134
commit eb249946d0
5 changed files with 17 additions and 13 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: dec_eb164.c,v 1.21 1997/10/16 00:58:16 thorpej Exp $ */ /* $NetBSD: dec_eb164.c,v 1.22 1997/10/17 18:47:30 mjacob Exp $ */
/* /*
* Copyright (c) 1995, 1996, 1997 Carnegie-Mellon University. * Copyright (c) 1995, 1996, 1997 Carnegie-Mellon University.
@ -32,7 +32,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */ #include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
__KERNEL_RCSID(0, "$NetBSD: dec_eb164.c,v 1.21 1997/10/16 00:58:16 thorpej Exp $"); __KERNEL_RCSID(0, "$NetBSD: dec_eb164.c,v 1.22 1997/10/17 18:47:30 mjacob Exp $");
#include <sys/param.h> #include <sys/param.h>
#include <sys/systm.h> #include <sys/systm.h>
@ -43,6 +43,7 @@ __KERNEL_RCSID(0, "$NetBSD: dec_eb164.c,v 1.21 1997/10/16 00:58:16 thorpej Exp $
#include <machine/rpb.h> #include <machine/rpb.h>
#include <machine/autoconf.h> #include <machine/autoconf.h>
#include <machine/conf.h> #include <machine/conf.h>
#include <machine/bus.h>
#include <dev/ic/comreg.h> #include <dev/ic/comreg.h>
#include <dev/ic/comvar.h> #include <dev/ic/comvar.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.90 1997/09/23 23:23:26 mjacob Exp $ */ /* $NetBSD: machdep.c,v 1.91 1997/10/17 18:47:39 mjacob Exp $ */
/* /*
* Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University. * Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University.
@ -29,7 +29,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */ #include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.90 1997/09/23 23:23:26 mjacob Exp $"); __KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.91 1997/10/17 18:47:39 mjacob Exp $");
#include <sys/param.h> #include <sys/param.h>
#include <sys/systm.h> #include <sys/systm.h>
@ -53,6 +53,7 @@ __KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.90 1997/09/23 23:23:26 mjacob Exp $");
#include <sys/user.h> #include <sys/user.h>
#include <sys/exec.h> #include <sys/exec.h>
#include <sys/exec_ecoff.h> #include <sys/exec_ecoff.h>
#include <vm/vm.h>
#include <sys/sysctl.h> #include <sys/sysctl.h>
#include <sys/core.h> #include <sys/core.h>
#include <sys/kcore.h> #include <sys/kcore.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: prom.c,v 1.17 1997/09/02 20:15:36 thorpej Exp $ */ /* $NetBSD: prom.c,v 1.18 1997/10/17 18:47:50 mjacob Exp $ */
/* /*
* Copyright (c) 1992, 1994, 1995, 1996 Carnegie Mellon University * Copyright (c) 1992, 1994, 1995, 1996 Carnegie Mellon University
@ -27,17 +27,17 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */ #include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
__KERNEL_RCSID(0, "$NetBSD: prom.c,v 1.17 1997/09/02 20:15:36 thorpej Exp $"); __KERNEL_RCSID(0, "$NetBSD: prom.c,v 1.18 1997/10/17 18:47:50 mjacob Exp $");
#include <sys/param.h> #include <sys/param.h>
#include <sys/systm.h> #include <sys/systm.h>
#include <vm/vm.h>
#include <sys/proc.h> #include <sys/proc.h>
#include <sys/user.h> #include <sys/user.h>
#include <machine/rpb.h> #include <machine/rpb.h>
#include <machine/prom.h> #include <machine/prom.h>
#ifdef NEW_PMAP #ifdef NEW_PMAP
#include <vm/vm.h>
#include <vm/pmap.h> #include <vm/pmap.h>
#endif #endif

View File

@ -1,4 +1,4 @@
/* $NetBSD: trap.c,v 1.27 1997/09/02 13:22:53 thorpej Exp $ */ /* $NetBSD: trap.c,v 1.28 1997/10/17 18:47:58 mjacob Exp $ */
/* /*
* Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University. * Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University.
@ -31,10 +31,11 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */ #include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.27 1997/09/02 13:22:53 thorpej Exp $"); __KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.28 1997/10/17 18:47:58 mjacob Exp $");
#include <sys/param.h> #include <sys/param.h>
#include <sys/systm.h> #include <sys/systm.h>
#include <vm/vm.h>
#include <sys/proc.h> #include <sys/proc.h>
#include <sys/user.h> #include <sys/user.h>
#include <sys/syscall.h> #include <sys/syscall.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: vm_machdep.c,v 1.26 1997/09/02 20:15:37 thorpej Exp $ */ /* $NetBSD: vm_machdep.c,v 1.27 1997/10/17 18:48:07 mjacob Exp $ */
/* /*
* Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University. * Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University.
@ -29,7 +29,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */ #include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
__KERNEL_RCSID(0, "$NetBSD: vm_machdep.c,v 1.26 1997/09/02 20:15:37 thorpej Exp $"); __KERNEL_RCSID(0, "$NetBSD: vm_machdep.c,v 1.27 1997/10/17 18:48:07 mjacob Exp $");
#include <sys/param.h> #include <sys/param.h>
#include <sys/systm.h> #include <sys/systm.h>
@ -41,12 +41,13 @@ __KERNEL_RCSID(0, "$NetBSD: vm_machdep.c,v 1.26 1997/09/02 20:15:37 thorpej Exp
#include <sys/core.h> #include <sys/core.h>
#include <sys/exec.h> #include <sys/exec.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <machine/cpu.h> #include <machine/cpu.h>
#include <machine/pmap.h> #include <machine/pmap.h>
#include <machine/reg.h> #include <machine/reg.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
/* /*
* Dump the machine specific header information at the start of a core dump. * Dump the machine specific header information at the start of a core dump.