diff options
author | nate <nate@FreeBSD.org> | 1994-01-19 03:52:25 +0000 |
---|---|---|
committer | nate <nate@FreeBSD.org> | 1994-01-19 03:52:25 +0000 |
commit | 5c5595f3d48bdb876a1f869d39ef9a5b0dd85f91 (patch) | |
tree | 611418e0400d66c9b6959a19fdcec66cf02abf98 | |
parent | 8ea66e818e8f14c95dcbd65059f879c8fe3d0021 (diff) | |
download | FreeBSD-src-5c5595f3d48bdb876a1f869d39ef9a5b0dd85f91.zip FreeBSD-src-5c5595f3d48bdb876a1f869d39ef9a5b0dd85f91.tar.gz |
Added necessary include files to define KERNBASE due to VM changes.
-rw-r--r-- | usr.sbin/dbsym/dbsym.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/usr.sbin/dbsym/dbsym.c b/usr.sbin/dbsym/dbsym.c index 7eb3de5..bc2a987 100644 --- a/usr.sbin/dbsym/dbsym.c +++ b/usr.sbin/dbsym/dbsym.c @@ -3,7 +3,7 @@ */ #ifndef lint -static char rcsid[] = "$Id: dbsym.c,v 1.8 1993/08/02 17:57:02 mycroft Exp $"; +static char rcsid[] = "$Id: dbsym.c,v 1.2 1993/09/26 16:40:41 rgrimes Exp $"; #endif /* not lint */ #include <stdio.h> @@ -11,6 +11,11 @@ static char rcsid[] = "$Id: dbsym.c,v 1.8 1993/08/02 17:57:02 mycroft Exp $"; #include <a.out.h> #include <stab.h> #include <machine/param.h> +#include <vm/vm_param.h> +#include <vm/lock.h> +#include <vm/vm_statistics.h> +#include <machine/pmap.h> +#include <machine/vmparam.h> #define FILE_OFFSET(vadr) (((vadr) - text_adr) - N_DATADDR(hdr) + \ N_DATOFF(hdr) + N_TXTADDR(hdr)) |