1
0
mirror of https://github.com/cc65/cc65.git synced 2025-02-15 10:30:58 +00:00

Fixed parameter naming

git-svn-id: svn://svn.cc65.org/cc65/trunk@3504 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2005-05-08 20:41:10 +00:00
parent 0fcc998024
commit a48bbd076d

View File

@ -41,7 +41,7 @@
/* The watcom compiler doesn't have va_copy and a problematic va_list definition */
#if defined(__WATCOMC__)
#define va_copy(src,dest) memcpy((src), (dest), sizeof (va_list))
#define va_copy(dest,src) memcpy((dest), (src), sizeof (va_list))
#endif