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]
13 lines
276 B
C
13 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_ */
|