summaryrefslogtreecommitdiff
path: root/lang/icc7/files/stdarg.h
blob: e2f40091f821d499bf541a2475bb360461157f85 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef	__INTEL_COMPILER_STDARG_H_
#define	__INTEL_COMPILER_STDARG_H_

#include_next <stdarg.h>

#if __ISO_C_VISIBLE >= 1999
/* Taken from original yvals.h. */
#ifndef va_copy
#define	va_copy(dest, src)	((dest) = (src))
#endif
#endif

#endif /* !__INTEL_COMPILER_STDARG_H_ */