mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
baa8612f1d
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]
14 lines
276 B
C
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_ */
|