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/arm/include/stdarg.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/arm/include/stdarg.h')
-rw-r--r-- | sys/arch/arm/include/stdarg.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/arm/include/stdarg.h b/sys/arch/arm/include/stdarg.h index 6161c58b8ce..0bcb8df025c 100644 --- a/sys/arch/arm/include/stdarg.h +++ b/sys/arch/arm/include/stdarg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: stdarg.h,v 1.8 2011/03/02 18:31:58 matthew Exp $ */ +/* $OpenBSD: stdarg.h,v 1.9 2011/03/23 16:54:34 pirofti Exp $ */ /* $NetBSD: stdarg.h,v 1.7 2003/08/07 16:26:53 agc Exp $ */ /* @@ -32,8 +32,8 @@ * from: @(#)stdarg.h 8.1 (Berkeley) 6/10/93 */ -#ifndef _ARM32_STDARG_H_ -#define _ARM32_STDARG_H_ +#ifndef _ARM_STDARG_H_ +#define _ARM_STDARG_H_ #include <sys/cdefs.h> #include <machine/_types.h> @@ -53,4 +53,4 @@ typedef __va_list va_list; #define va_end(ap) __builtin_va_end((ap)) #define __va_copy(dest, src) __builtin_va_copy((dest), (src)) -#endif /* !_ARM32_STDARG_H_ */ +#endif /* !_ARM_STDARG_H_ */ |