home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c329 / 2.img / INCL / VARARGS.H < prev   
Encoding:
C/C++ Source or Header  |  1989-10-05  |  251 b   |  13 lines

  1. /*
  2.  *    varargs.h
  3.  *
  4.  *    Copyright (C) MicroWay, Inc., 1987, 1988, 1989
  5.  *
  6.  */
  7.  
  8. typedef char *va_list;
  9. #define va_dcl        int va_alist;
  10. #define va_start(ap)    (ap) = (char *)(&va_alist)
  11. #define va_arg(ap,mode)    *((mode *)(ap))++
  12. #define va_end(ap)
  13.