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/alpha/include/varargs.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/alpha/include/varargs.h')
-rw-r--r-- | sys/arch/alpha/include/varargs.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/alpha/include/varargs.h b/sys/arch/alpha/include/varargs.h index 9d8a5d775ed..404c3397137 100644 --- a/sys/arch/alpha/include/varargs.h +++ b/sys/arch/alpha/include/varargs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: varargs.h,v 1.5 2003/06/02 23:27:43 millert Exp $ */ +/* $OpenBSD: varargs.h,v 1.6 2011/03/23 16:54:34 pirofti Exp $ */ /* $NetBSD: varargs.h,v 1.5 1996/10/09 21:13:05 cgd Exp $ */ /*- @@ -37,8 +37,8 @@ * @(#)varargs.h 8.2 (Berkeley) 3/22/94 */ -#ifndef _ALPHA_VARARGS_H_ -#define _ALPHA_VARARGS_H_ +#ifndef _MACHINE_VARARGS_H_ +#define _MACHINE_VARARGS_H_ #include <machine/stdarg.h> @@ -55,4 +55,4 @@ #define va_start(ap) \ ((ap) = *(va_list *)__builtin_saveregs(), (ap).pad = 0) -#endif /* !_ALPHA_VARARGS_H_ */ +#endif /* !_MACHINE_VARARGS_H_ */ |