diff options
| author | Martin v. Löwis <martin@v.loewis.de> | 2002-07-28 10:21:31 +0000 |
|---|---|---|
| committer | Martin v. Löwis <martin@v.loewis.de> | 2002-07-28 10:21:31 +0000 |
| commit | 59b5b4720b9bb11e0dcbb4cb255c6cc571df0a5c (patch) | |
| tree | 4657b04773da19b3895fdd5841eb01a62ab8d909 /Python/getargs.c | |
| parent | 086fa07f6878d9678c9efe8a728a99dfc3e0d292 (diff) | |
| download | cpython-git-59b5b4720b9bb11e0dcbb4cb255c6cc571df0a5c.tar.gz | |
Patch #554716: Use __va_copy where available.
Diffstat (limited to 'Python/getargs.c')
| -rw-r--r-- | Python/getargs.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Python/getargs.c b/Python/getargs.c index 9df2a2e566..08b79e474a 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); } |
