1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00
freebsd-ports/lang/icc7/files/stdarg.h
Alexander Leidinger 6b11c196c9 Add missing files for the 7.0.078 update.
Pointy hat to:	netchild
2003-01-11 17:25:51 +00:00

10 lines
164 B
C

#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