diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-03-23 16:12:32 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-03-23 16:12:32 +0000 |
commit | 73c9f13809997febbf178be4123a0352ee8b8312 (patch) | |
tree | 4a514d179014528fcaa112abb942d619dc1ae9ca /sys/arch/ia64 | |
parent | 3ea8990ba9276efe1c2bbde129074f8dd9b8c992 (diff) |
refactor sys/param.h and machine/param.h. A lot of #ifdef _KERNEL is added
to keep definitions our of user space. The MD files now follow a consistant
order -- all namespace intrusion is at the tail can be cleaned up
independently. locore, bootblocks, and libkvm still see enough visibility to
build. Checked on 90% of platforms...
Diffstat (limited to 'sys/arch/ia64')
-rw-r--r-- | sys/arch/ia64/include/param.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/ia64/include/param.h b/sys/arch/ia64/include/param.h index b13d6609a53..7d4342ffac2 100644 --- a/sys/arch/ia64/include/param.h +++ b/sys/arch/ia64/include/param.h @@ -1,11 +1,11 @@ -/* $OpenBSD: param.h,v 1.2 2011/09/08 03:40:32 guenther Exp $ */ +/* $OpenBSD: param.h,v 1.3 2013/03/23 16:12:23 deraadt Exp $ */ /* * Written by Paul Irofti <pirofti@openbsd.org>. Public Domain. */ -#ifndef _IA64_PARAM_H_ -#define _IA64_PARAM_H_ +#ifndef _MACHINE_PARAM_H_ +#define _MACHINE_PARAM_H_ #define _MACHINE ia64 #define MACHINE "ia64" @@ -17,4 +17,4 @@ #define ALIGN(p) _ALIGN(p) #define ALIGNED_POINTER(p,t) _ALIGNED_POINTER(p,t) -#endif /* _IA64_PARAM_H_ */ +#endif /* _MACHINE_PARAM_H_ */ |