141888Sbostic /*- 241888Sbostic * Copyright (c) 1990 The Regents of the University of California. 341888Sbostic * All rights reserved. 441888Sbostic * 541888Sbostic * %sccs.include.redist.c% 641888Sbostic * 7*47788Sbostic * @(#)varargs.h 5.3 (Berkeley) 04/03/91 841888Sbostic */ 912198Ssam 10*47788Sbostic #ifndef _VARARGS_H_ 11*47788Sbostic #define _VARARGS_H_ 12*47788Sbostic 1341890Sbostic #include <stdarg.h> 1441888Sbostic 1541890Sbostic #undef va_dcl 1641890Sbostic #define va_dcl int va_alist; 1741888Sbostic 1841890Sbostic #undef va_start 1941888Sbostic #define va_start(ap) \ 2041888Sbostic ap = (char *)&va_alist 21*47788Sbostic 22*47788Sbostic #endif /* !_VARARGS_H_ */ 23