mirror of
https://github.com/cc65/cc65.git
synced 2025-02-14 19:30:52 +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:
parent
0fcc998024
commit
a48bbd076d
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user