1: 
   2:  /*
   3:   * What follows is an attempt to unify varargs.h and stdarg.h. I'd rather
   4:   * have this than #ifdefs all over the code.
   5:   */
   6: 
   7: #ifdef __STDC__
   8: #include <stdarg.h>
   9: #define VARARGS(func,type,arg) func(type arg, ...)
  10: #define VASTART(ap,type,name)  va_start(ap,name)
  11: #define VAEND(ap)              va_end(ap)
  12: #else
  13: #include <varargs.h>
  14: #define VARARGS(func,type,arg) func(va_alist) va_dcl
  15: #define VASTART(ap,type,name)  {type name; va_start(ap); name = va_arg(ap, type)
  16: #define VAEND(ap)              va_end(ap);}
  17: #endif
  18: 
  19: extern char *percent_m();
Last modified: 1994-12-28
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 1901
Valid CSS Valid XHTML 1.0 Strict