1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-23 04:23:08 +00:00
freebsd-ports/lang/icc7/files/stdarg.h
Alexander Leidinger baa8612f1d - some base system headers know about icc now, don't override them
where appropriate [1]
- make portlint happy [1]
- sync icc7 and icc [1]
- add linux_base as a patch depends for icc v8

Submitted by:	Marius Strobl <marius@alchemy.franken.de> [1]
Requested by:	maintainer [1]
2004-03-13 10:33:18 +00:00

14 lines
276 B
C

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