source: branches/libc-0.6/src/binutils/include/mpw/varargs.h

Last change on this file was 10, checked in by bird, 22 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 249 bytes
Line 
1/* varargs.h. */
2#ifndef __va_list__
3#define __va_list__
4typedef char *va_list;
5#endif
6#define va_dcl int va_alist;
7#define va_start(list) list = (char *) &va_alist
8#define va_end(list)
9#define va_arg(list,mode) ((mode *)(list += sizeof(mode)))[-1]
Note: See TracBrowser for help on using the repository browser.