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/amd64/include/reg.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/amd64/include/reg.h')
-rw-r--r-- | sys/arch/amd64/include/reg.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/amd64/include/reg.h b/sys/arch/amd64/include/reg.h index 1cd569d0d80..ee50e0bfdc9 100644 --- a/sys/arch/amd64/include/reg.h +++ b/sys/arch/amd64/include/reg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: reg.h,v 1.5 2009/12/25 20:54:48 miod Exp $ */ +/* $OpenBSD: reg.h,v 1.6 2011/03/23 16:54:34 pirofti Exp $ */ /* $NetBSD: reg.h,v 1.1 2003/04/26 18:39:47 fvdl Exp $ */ /*- @@ -35,8 +35,8 @@ * @(#)reg.h 5.5 (Berkeley) 1/18/91 */ -#ifndef _AMD64_REG_H_ -#define _AMD64_REG_H_ +#ifndef _MACHINE_REG_H_ +#define _MACHINE_REG_H_ #include <machine/fpu.h> @@ -124,4 +124,4 @@ struct fpreg { int check_context(const struct reg *, struct trapframe *); #endif -#endif /* !_AMD64_REG_H_ */ +#endif /* !_MACHINE_REG_H_ */ |