Make this compile again by including <vm/vm.h> and moving sysctl.h below

that include.
This commit is contained in:
leo 1997-10-22 08:04:07 +00:00
parent baddc757e4
commit c289655641
1 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.54 1997/09/19 13:53:34 leo Exp $ */
/* $NetBSD: machdep.c,v 1.55 1997/10/22 08:04:07 leo Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -61,7 +61,6 @@
#include <sys/exec.h> /* for PS_STRINGS */
#include <sys/vnode.h>
#include <sys/queue.h>
#include <sys/sysctl.h>
#include <sys/mount.h>
#include <sys/syscallargs.h>
#ifdef SYSVSHM
@ -75,6 +74,7 @@
#endif
#include <net/netisr.h>
#define MAXMEM 64*1024*CLSIZE /* XXX - from cmap.h */
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/pmap.h>
#include <vm/vm_map.h>
@ -82,6 +82,8 @@
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <sys/sysctl.h>
#include <machine/db_machdep.h>
#include <ddb/db_sym.h>
#include <ddb/db_extern.h>