1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-27 10:03:20 +00:00
freebsd-ports/lang/icc/files/stdarg.h

14 lines
276 B
C
Raw Normal View History

#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_ */