Multiple include protection.

This commit is contained in:
simonb 2000-03-29 03:41:07 +00:00
parent 56fba1c4d0
commit 4471772be4
2 changed files with 10 additions and 2 deletions

@ -1,4 +1,4 @@
/* $NetBSD: vm_extern.h,v 1.46 1999/07/22 22:58:40 thorpej Exp $ */
/* $NetBSD: vm_extern.h,v 1.47 2000/03/29 03:41:07 simonb Exp $ */
/*-
* Copyright (c) 1992, 1993
@ -35,6 +35,9 @@
* @(#)vm_extern.h 8.5 (Berkeley) 5/3/95
*/
#ifndef _VM_VM_EXTERN_H_
#define _VM_VM_EXTERN_H_
struct buf;
struct loadavg;
struct proc;
@ -60,3 +63,4 @@ void cpu_swapout __P((struct proc *));
#endif
#endif
#endif /* !_VM_VM_EXTERN_H_ */

@ -1,4 +1,4 @@
/* $NetBSD: vm_kern.h,v 1.12 1999/03/24 05:51:34 mrg Exp $ */
/* $NetBSD: vm_kern.h,v 1.13 2000/03/29 03:41:07 simonb Exp $ */
/*
* Copyright (c) 1991, 1993
@ -64,6 +64,9 @@
* rights to redistribute these changes.
*/
#ifndef _VM_VM_KERN_H_
#define _VM_VM_KERN_H_
/* Kernel memory management definitions. */
extern vm_map_t buffer_map;
@ -72,3 +75,4 @@ extern vm_map_t kernel_map;
extern vm_map_t kmem_map;
extern vm_map_t mb_map;
extern vm_map_t phys_map;
#endif /* !_VM_VM_KERN_H_ */