diff options
Diffstat (limited to 'Python')
-rw-r--r-- | Python/getargs.c | 4 | ||||
-rw-r--r-- | Python/modsupport.c | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/Python/getargs.c b/Python/getargs.c index 280ffc3..cc0409d 100644 --- a/Python/getargs.c +++ b/Python/getargs.c @@ -61,8 +61,12 @@ PyArg_VaParse(PyObject *args, char *format, va_list va) #ifdef VA_LIST_IS_ARRAY memcpy(lva, va, sizeof(va_list)); #else +#ifdef __va_copy + __va_copy(lva, va); +#else lva = va; #endif +#endif return vgetargs1(args, format, &lva, 0); } diff --git a/Python/modsupport.c b/Python/modsupport.c index f4f8298..1f8ef07 100644 --- a/Python/modsupport.c +++ b/Python/modsupport.c @@ -418,8 +418,12 @@ Py_VaBuildValue(char *format, va_list va) #ifdef VA_LIST_IS_ARRAY memcpy(lva, va, sizeof(va_list)); #else +#ifdef __va_copy + __va_copy(lva, va); +#else lva = va; #endif +#endif if (n < 0) return NULL; |