implement memcpy version of VA_COPY correctly

This commit is contained in:
Bill Currie 2003-07-21 19:26:53 +00:00
parent 810dfb29e6
commit 2d55162a05
1 changed files with 1 additions and 1 deletions

View File

@ -409,7 +409,7 @@ Sys_Quit (void)
#elif defined (HAVE__VA_COPY)
# define VA_COPY(a,b) __va_copy (a, b)
#else
# define VA_COPY memcpy (a, b, sizeof (a))
# define VA_COPY(a,b) memcpy (a, b, sizeof (a))
#endif
void