xref: /original-bsd/sys/hp300/include/varargs.h (revision 3a8172c6)
1 /*-
2  * Copyright (c) 1990 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)varargs.h	5.3 (Berkeley) 04/03/91
8  */
9 
10 #ifndef _VARARGS_H_
11 #define	_VARARGS_H_
12 
13 #include <stdarg.h>
14 
15 #undef	va_dcl
16 #define	va_dcl	int va_alist;
17 
18 #undef	va_start
19 #define	va_start(ap) \
20 	ap = (char *)&va_alist
21 
22 #endif /* !_VARARGS_H_ */
23