Author: tkreuzer
Date: Thu May 14 21:52:09 2015
New Revision: 67727
URL:
http://svn.reactos.org/svn/reactos?rev=67727&view=rev
Log:
[CRT]
add __va_copy for ARM
Modified:
trunk/reactos/include/crt/vadefs.h
Modified: trunk/reactos/include/crt/vadefs.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/crt/vadefs.h?rev=6…
==============================================================================
--- trunk/reactos/include/crt/vadefs.h [iso-8859-1] (original)
+++ trunk/reactos/include/crt/vadefs.h [iso-8859-1] Thu May 14 21:52:09 2015
@@ -69,6 +69,7 @@
#endif
#define _crt_va_arg(ap,t) (*(t*)((ap += _SLOTSIZEOF(t) + _APALIGN(t,ap)) -
_SLOTSIZEOF(t)))
#define _crt_va_end(ap) ( ap = (va_list)0 )
+#define __va_copy(d,s) ((void)((d) = (s)))
#else //if defined(_M_IA64) || defined(_M_CEE)
#error Please implement me
#endif