diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2001-09-11 03:50:47 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2001-09-11 03:50:47 +0000 |
commit | 8fbf8fbc567aa354ec834dd9fa9effe83301bbe7 (patch) | |
tree | b87b31237a254f314b772f61398fcbd5bec272dd /sys/arch/sparc64/include/param.h | |
parent | f149973361f96e730c34e97705b7f155f1832092 (diff) |
protect from multiple inclusion
Diffstat (limited to 'sys/arch/sparc64/include/param.h')
-rw-r--r-- | sys/arch/sparc64/include/param.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/arch/sparc64/include/param.h b/sys/arch/sparc64/include/param.h index f576cf9abd2..40d3e9e4c74 100644 --- a/sys/arch/sparc64/include/param.h +++ b/sys/arch/sparc64/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.3 2001/08/18 20:15:34 art Exp $ */ +/* $OpenBSD: param.h,v 1.4 2001/09/11 03:50:46 jason Exp $ */ /* $NetBSD: param.h,v 1.25 2001/05/30 12:28:51 mrg Exp $ */ /* @@ -68,7 +68,8 @@ * */ - +#ifndef _SPARC64_PARAM_H_ +#define _SPARC64_PARAM_H_ #define _MACHINE sparc64 #define MACHINE "sparc64" @@ -311,3 +312,4 @@ extern int mmumod; #define PAGE_SIZE (1 << PAGE_SHIFT) #define PAGE_MASK (PAGE_SIZE - 1) +#endif /* _SPARC64_PARAM_H_ */ |