diff options
author | Paul Irofti <pirofti@cvs.openbsd.org> | 2011-03-23 16:54:38 +0000 |
---|---|---|
committer | Paul Irofti <pirofti@cvs.openbsd.org> | 2011-03-23 16:54:38 +0000 |
commit | 96b354137b8039e6c2ebd6f88c0008ecb2e4f20d (patch) | |
tree | b34cf5e18c5986eb1ce733aad820bd3ce42c6b46 /sys/arch/i386/include/cpu.h | |
parent | d81ed92368684fcbb0e5ea3bcf868e6252a6ddda (diff) |
Normalize sentinel. Use _MACHINE_*_H_ and _<ARCH>_*_H_ properly and consitently.
Discussed and okay drahn@. Okay deraadt@.
Diffstat (limited to 'sys/arch/i386/include/cpu.h')
-rw-r--r-- | sys/arch/i386/include/cpu.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/i386/include/cpu.h b/sys/arch/i386/include/cpu.h index 77a060fdf71..f4bc7840041 100644 --- a/sys/arch/i386/include/cpu.h +++ b/sys/arch/i386/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.117 2010/10/02 23:13:28 deraadt Exp $ */ +/* $OpenBSD: cpu.h,v 1.118 2011/03/23 16:54:35 pirofti Exp $ */ /* $NetBSD: cpu.h,v 1.35 1996/05/05 19:29:26 christos Exp $ */ /*- @@ -35,8 +35,8 @@ * @(#)cpu.h 5.4 (Berkeley) 5/9/91 */ -#ifndef _I386_CPU_H_ -#define _I386_CPU_H_ +#ifndef _MACHINE_CPU_H_ +#define _MACHINE_CPU_H_ /* * Definitions unique to i386 cpu support. @@ -492,4 +492,4 @@ void vm86_gpfault(struct proc *, int); #include <sys/mplock.h> #endif -#endif /* !_I386_CPU_H_ */ +#endif /* !_MACHINE_CPU_H_ */ |