dos_compilers/Manx Aztec C86 v42b/INCLUDE/STDARG.H

7 lines
246 B
C++
Raw Normal View History

2024-07-02 16:07:59 +02:00
/* Copyright Manx Software Systems, Inc. 1987. All rights reserved */
typedef char *va_list;
#define va_start(ap, parmN) ((ap) = (char *)(&parmN + 1))
#define va_arg(ap, type) ((ap) += sizeof(type), ((type *)(ap))[-1])
#define va_end(ap)