ack/lang/cem/libcc.ansi/headers/stdarg.h

21 lines
557 B
C
Raw Normal View History

1989-05-16 13:13:53 +00:00
/*
* stdarg.h - variable arguments
*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
/* $Header$ */
1989-09-29 15:46:33 +00:00
#if !defined(__STDARG_HEADER__)
#define __STDARG_HEADER__
1989-05-16 13:13:53 +00:00
1989-09-29 15:46:33 +00:00
typedef void *va_list;
1989-05-16 13:13:53 +00:00
1989-09-29 15:46:33 +00:00
#define _vasz(x) ((sizeof(x)+sizeof(int)-1) & ~(sizeof(int) -1))
1989-05-16 13:13:53 +00:00
1989-09-29 15:46:33 +00:00
#define va_start(ap, parmN) (ap = (va_list)&parmN + _vasz(parmN))
#define va_arg(ap, type) (*((type *)((ap += _vasz(type)) - _vasz(type))))
#define va_end(ap)
#endif /* __STDARG_HEADER__ */