add __va_copy for ARM

svn path=/trunk/; revision=67727
This commit is contained in:
Timo Kreuzer 2015-05-14 21:52:09 +00:00
parent 6b9a175dfb
commit 7b2824f7ee

View file

@ -69,6 +69,7 @@ extern "C" {
#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