Removed unused #includes.

This commit is contained in:
Bruce Evans 1997-09-01 01:12:53 +00:00
parent 0ff12406c3
commit 6856ba1262
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=28981
5 changed files with 5 additions and 25 deletions

View File

@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: bios.c,v 1.3 1997/08/05 01:38:19 msmith Exp $
* $Id: bios.c,v 1.4 1997/08/06 11:08:01 peter Exp $
*/
/*
@ -35,7 +35,6 @@
#include <sys/kernel.h>
#include <vm/vm.h>
#include <vm/pmap.h>
#include <machine/pmap.h>
#include <machine/md_var.h>
#include <machine/pc/bios.h>

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)sys_machdep.c 5.5 (Berkeley) 1/19/91
* $Id: sys_machdep.c,v 1.23 1997/08/09 00:02:49 dyson Exp $
* $Id: sys_machdep.c,v 1.24 1997/08/28 14:36:54 jlemon Exp $
*
*/
@ -51,10 +51,6 @@
#include <machine/cpu.h>
#include <machine/sysarch.h>
#ifdef VM86
#include <machine/pcb_ext.h>
#include <machine/vm86.h>
#endif /* VM86 */
#include <vm/vm_kern.h> /* for kernel_map */

View File

@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: bios.c,v 1.3 1997/08/05 01:38:19 msmith Exp $
* $Id: bios.c,v 1.4 1997/08/06 11:08:01 peter Exp $
*/
/*
@ -35,7 +35,6 @@
#include <sys/kernel.h>
#include <vm/vm.h>
#include <vm/pmap.h>
#include <machine/pmap.h>
#include <machine/md_var.h>
#include <machine/pc/bios.h>

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)sys_machdep.c 5.5 (Berkeley) 1/19/91
* $Id: sys_machdep.c,v 1.23 1997/08/09 00:02:49 dyson Exp $
* $Id: sys_machdep.c,v 1.24 1997/08/28 14:36:54 jlemon Exp $
*
*/
@ -51,10 +51,6 @@
#include <machine/cpu.h>
#include <machine/sysarch.h>
#ifdef VM86
#include <machine/pcb_ext.h>
#include <machine/vm86.h>
#endif /* VM86 */
#include <vm/vm_kern.h> /* for kernel_map */

View File

@ -23,32 +23,22 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: vm86.c,v 1.1 1997/08/09 01:38:03 dyson Exp $
* $Id: vm86.c,v 1.2 1997/08/28 14:36:55 jlemon Exp $
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
#include <sys/lock.h>
#include <sys/unistd.h>
#include <sys/malloc.h>
#include <sys/kernel.h>
#include <sys/shm.h>
#include <sys/sysproto.h>
#include <sys/filedesc.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_prot.h>
#include <vm/pmap.h>
#include <vm/vm_kern.h>
#include <vm/vm_map.h>
#include <vm/vm_page.h>
#include <vm/vm_extern.h>
#include <sys/user.h>
#include <machine/cpu.h>
#include <machine/psl.h>
#include <machine/md_var.h>
#include <machine/specialreg.h>