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/mips64/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/mips64/include/reg.h')
-rw-r--r-- | sys/arch/mips64/include/reg.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/mips64/include/reg.h b/sys/arch/mips64/include/reg.h index 1af5bae6e3e..9a67a457ec9 100644 --- a/sys/arch/mips64/include/reg.h +++ b/sys/arch/mips64/include/reg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: reg.h,v 1.2 2005/08/07 07:29:44 miod Exp $ */ +/* $OpenBSD: reg.h,v 1.3 2011/03/23 16:54:36 pirofti Exp $ */ /* * Copyright (c) 1988 University of Utah. @@ -37,8 +37,8 @@ * @(#)reg.h 8.2 (Berkeley) 1/11/94 */ -#ifndef _MIPS_REG_H_ -#define _MIPS_REG_H_ +#ifndef _MIPS64_REG_H_ +#define _MIPS64_REG_H_ /* * Location of the users' stored * registers relative to ZERO. @@ -54,4 +54,4 @@ struct reg { register_t r_regs[NREGS]; /* numbered as above */ }; -#endif /* !_MIPS_REG_H_ */ +#endif /* !_MIPS64_REG_H_ */ |