1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-19 15:33:56 +00:00

Added necessary include files to define KERNBASE due to VM changes.

This commit is contained in:
Nate Williams 1994-01-19 03:52:25 +00:00
parent 7af948c9cc
commit b6f1c4ea4f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=985

View File

@ -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))