141888Sbostic /*- 241888Sbostic * Copyright (c) 1990 The Regents of the University of California. 341888Sbostic * All rights reserved. 441888Sbostic * 541888Sbostic * %sccs.include.redist.c% 641888Sbostic * 7*41890Sbostic * @(#)varargs.h 5.2 (Berkeley) 05/13/90 841888Sbostic */ 912198Ssam 10*41890Sbostic #include <stdarg.h> 1141888Sbostic 12*41890Sbostic #undef va_dcl 13*41890Sbostic #define va_dcl int va_alist; 1441888Sbostic 15*41890Sbostic #undef va_start 1641888Sbostic #define va_start(ap) \ 1741888Sbostic ap = (char *)&va_alist 18