home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 291.lha / CcLib_v1.2 / include / stdarg.h < prev    next >
C/C++ Source or Header  |  1989-10-07  |  229b  |  12 lines

  1. #ifndef STDARGS_H
  2. #define STDARGS_H 1
  3.  
  4. typedef unsigned char *va_list;
  5.  
  6. #define va_start(ap,lastarg) (ap = ((va_list)&lastarg) + sizeof(lastarg) )
  7. #define va_arg(ap,type) ( *((type *)ap)++ )
  8. #define va_end(ap) (ap = 0L)
  9.  
  10. #endif
  11.  
  12.