supermario/bin/MPW-3.2.3/Interfaces/CIncludes/StdArg.h

24 lines
400 B
C
Raw Normal View History

2019-06-29 14:03:22 +00:00
/*
StdArg.h -- Variable arguments
Copyright Apple Computer,Inc. 1987, 1990
All rights reserved.
*/
#ifndef __STDARG__
#define __STDARG__
#ifndef __va_list__
#define __va_list__
typedef char *va_list;
#endif
#define va_start(ap, parmN) ap = (va_list) ((char *)&parmN + sizeof (parmN))
#define va_arg(ap, type) ((type *)(ap += sizeof (type)))[-1]
#define va_end(ap) /* do nothing */
#endif