home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / prog_c / schem2c1.lzh / Scheme2C / Scheme-src.lzh / scrt / varargs.h < prev   
Encoding:
C/C++ Source or Header  |  1991-10-11  |  344 b   |  11 lines

  1. /*
  2.  * Varargs, for use on AmigaDOS with the Lattice C compiler, or (maybe?) the
  3.  * Manx compiler with 32-bit ints. Blatantly lifted from 4.2BSD.
  4.  */
  5.  
  6. typedef char   *va_list;
  7. #define va_dcl        int va_alist;
  8. #define va_start(pv)    pv = (char *) &va_alist
  9. #define va_end(pv)        /* Naught to do... */
  10. #define va_arg(pv, t)    ((t *) (pv += sizeof(t)))[-1]
  11.