diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-30 08:48:24 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-30 08:48:24 +0000 |
commit | da10fa74772694cff97087eb39c83a311ba6eadc (patch) | |
tree | c2f7eb8915196cb758b2aabeb7ed60b0df6ffcd8 /sys/arch/vax/include/stdarg.h | |
parent | b9aee3c44417b6bdbb038f048472d3b1f05aaa8c (diff) |
from netbsd: support more gcc versions
Diffstat (limited to 'sys/arch/vax/include/stdarg.h')
-rw-r--r-- | sys/arch/vax/include/stdarg.h | 24 |
1 files changed, 9 insertions, 15 deletions
diff --git a/sys/arch/vax/include/stdarg.h b/sys/arch/vax/include/stdarg.h index a6cb75347bb..41042c71d7d 100644 --- a/sys/arch/vax/include/stdarg.h +++ b/sys/arch/vax/include/stdarg.h @@ -1,4 +1,4 @@ -/* $NetBSD: stdarg.h,v 1.5 1995/03/28 18:21:25 jtc Exp $ */ +/* $NetBSD: stdarg.h,v 1.8 1995/12/25 23:15:37 mycroft Exp $ */ /*- * Copyright (c) 1991 The Regents of the University of California. @@ -42,21 +42,15 @@ typedef _BSD_VA_LIST_ va_list; -#define __va_promote(type) \ - (((sizeof(type) + sizeof(int) - 1) / sizeof(int)) * sizeof(int)) +#define __va_size(type) \ + (((sizeof(type) + sizeof(long) - 1) / sizeof(long)) * sizeof(long)) #define va_start(ap, last) \ - (ap = ((char *)&(last) + __va_promote(last))) - -#ifdef _KERNEL -#define va_arg(ap, type) \ - ((type *)(ap += sizeof(type)))[-1] -#else -#define va_arg(ap, type) \ - ((type *)(ap += sizeof(type) < sizeof(int) ? \ - (abort(), 0) : sizeof(type)))[-1] -#endif - -#define va_end(ap) ((void) 0) + ((ap) = (va_list)&(last) + __va_size(last)) + +#define va_arg(ap, type) \ + (*(type *)((ap) += __va_size(type), (ap) - __va_size(type))) + +#define va_end(ap) ((void)0) #endif /* !_VAX_STDARG_H_ */ |