This commit is contained in:
christos 1998-09-26 19:21:19 +00:00
parent 8ddcd514a6
commit 029ab07a4d
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: stdarg.h,v 1.13 1998/07/27 13:55:32 mycroft Exp $ */
/* $NetBSD: stdarg.h,v 1.14 1998/09/26 19:21:19 christos Exp $ */
/*-
* Copyright (c) 1991, 1993
@ -46,10 +46,10 @@ typedef _BSD_VA_LIST_ va_list;
(((sizeof(type) + sizeof(long) - 1) / sizeof(long)) * sizeof(long))
#define va_start(ap, last) \
((ap) = (va_list)&(last) + __va_size(last))
((ap) = (va_list)(void *)&(last) + __va_size(last))
#define va_arg(ap, type) \
(*(type *)((ap) += __va_size(type), (ap) - __va_size(type)))
(*(type *)(void *)((ap) += __va_size(type), (ap) - __va_size(type)))
#define va_end(ap)