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/reloc.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/reloc.h')
-rw-r--r-- | sys/arch/i386/include/reloc.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/sys/arch/i386/include/reloc.h b/sys/arch/i386/include/reloc.h index 42b34fae737..c183f5475c2 100644 --- a/sys/arch/i386/include/reloc.h +++ b/sys/arch/i386/include/reloc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: reloc.h,v 1.2 2010/06/27 03:11:44 guenther Exp $ */ +/* $OpenBSD: reloc.h,v 1.3 2011/03/23 16:54:35 pirofti Exp $ */ /* * Copyright (c) 2002,2003 Dale Rahn @@ -24,8 +24,8 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ -#ifndef _MACH_RELOC_H -#define _MACH_RELOC_H +#ifndef _MACHINE_RELOC_H_ +#define _MACHINE_RELOC_H_ #define R_TYPE(X) __CONCAT(RELOC_,X) @@ -49,6 +49,4 @@ #define RELOC_TLS_DTPOFF32 36 /* Offset in TLS block */ #define RELOC_TLS_TPOFF32 37 /* Offset in static TLS block */ -#endif /* _MACH_RELOC_H */ - - +#endif /* _MACHINE_RELOC_H_ */ |