This is mi.varargs.h in view mode; [Download] [Up]
/* $Header: /u/christos/src/tcsh-6.06/RCS/mi.varargs.h,v 1.1 1992/05/15 23:49:22 christos Exp $ */ /* * mi.varargs.h: Correct varargs for minix */ #ifndef _h_mi_varargs #define _h_mi_varargs typedef char *va_list; #define va_dcl int va_alist; #define va_start(p) (p) = (va_list) &va_alist; #define va_arg(p,type) ( (type *) ((p)+=sizeof(type)) )[-1] #define va_end(p) #endif /* _h_mi_varargs */
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.