diff options
author | phk <phk@FreeBSD.org> | 2003-01-03 14:22:52 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2003-01-03 14:22:52 +0000 |
commit | 2f7baffed6ea2747341f4ac70543257dcd1b16cc (patch) | |
tree | be53da7e390ce76ed396ae640411158a9a50dbfa /sys/vm | |
parent | c1a0e9934fed2099c07ed04436fb716d04bb8fa1 (diff) | |
download | FreeBSD-src-2f7baffed6ea2747341f4ac70543257dcd1b16cc.zip FreeBSD-src-2f7baffed6ea2747341f4ac70543257dcd1b16cc.tar.gz |
Use correct _VM_SWAP_PAGER_H_ to check for multiple inclusion.
Diffstat (limited to 'sys/vm')
-rw-r--r-- | sys/vm/swap_pager.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/vm/swap_pager.h b/sys/vm/swap_pager.h index 4402284..48ddf00 100644 --- a/sys/vm/swap_pager.h +++ b/sys/vm/swap_pager.h @@ -44,8 +44,8 @@ * 18 Dec 93. */ -#ifndef _SWAP_PAGER_ -#define _SWAP_PAGER_ 1 +#ifndef _VM_SWAP_PAGER_H_ +#define _VM_SWAP_PAGER_H_ 1 /* * SWB_NPAGES must be a power of 2. It may be set to 1, 2, 4, 8, or 16 @@ -107,4 +107,4 @@ struct buf; void swstrategy(struct buf *bp); /* probably needs to move elsewhere */ #endif /* _KERNEL */ -#endif /* _SWAP_PAGER_ */ +#endif /* _VM_SWAP_PAGER_H_ */ |