home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / BC_DICE2.DMS / in.adf / INCLUDE / varargs.h < prev   
Encoding:
C/C++ Source or Header  |  1995-01-09  |  286 b   |  17 lines

  1.  
  2. /*
  3.  * $VER: varargs.h 1.0 (17.4.93)
  4.  *
  5.  * (c)Copyright 1992 Obvious Implementations Corp, All Rights Reserved
  6.  */
  7.  
  8. #ifndef VARARGS_H
  9. #define VARARGS_H
  10. #ifndef STDARG_H
  11. #include <stdarg.h>
  12. #define va_dcl long va_alist;
  13. #define va_start(pvar)    (pvar = (void *)(&va_alist))
  14. #endif
  15. #endif
  16.  
  17.