mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
implement memcpy version of VA_COPY correctly
This commit is contained in:
parent
810dfb29e6
commit
2d55162a05
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue