diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-03-28 19:09:18 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-03-28 19:09:18 +0000 |
commit | fa7edd1b14a20b7b9f23c45d5496ff2f16c19e72 (patch) | |
tree | fe4fe9069cbc461b90753ec1812c6597fc1ca829 /sys/arch | |
parent | 72574dfc79ae9264af18819a38a99306ea95be52 (diff) |
inclusion protection; fries
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/pmax/include/mips_param.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sys/arch/pmax/include/mips_param.h b/sys/arch/pmax/include/mips_param.h index 1af8d2c3461..60212a77fc0 100644 --- a/sys/arch/pmax/include/mips_param.h +++ b/sys/arch/pmax/include/mips_param.h @@ -1,5 +1,8 @@ /* $NetBSD: mips_param.h,v 1.1 1996/05/19 17:52:18 jonathan Exp $ */ +#ifndef __MIPS_PARAM_H__ +#define __MIPS_PARAM_H__ + /* * Round p (pointer or byte index) up to a correctly-aligned value for all * data types (int, long, ...). The result is u_int and must be cast to @@ -81,3 +84,5 @@ extern void delay __P((int n)); #endif /* _LOCORE */ #endif /* _KERNEL */ + +#endif /* __MIPS_PARAM_H__ */ |