summaryrefslogtreecommitdiff
path: root/Python/hamt.c
diff options
context:
space:
mode:
authorKumar Aditya <59607654+kumaraditya303@users.noreply.github.com>2022-05-27 17:00:45 +0530
committerGitHub <noreply@github.com>2022-05-27 13:30:45 +0200
commitcb04a09d2dfd197436a11de504b92773569e19fb (patch)
tree8aa6d8280d9dde5c2058ccd8461f81f207a1a090 /Python/hamt.c
parentddc4a782d3f32efbc03c69ddd59b6fa10911bcd9 (diff)
downloadcpython-git-cb04a09d2dfd197436a11de504b92773569e19fb.tar.gz
GH-93207: Remove HAVE_STDARG_PROTOTYPES configure check for stdarg.h (#93215)
Diffstat (limited to 'Python/hamt.c')
-rw-r--r--Python/hamt.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/Python/hamt.c b/Python/hamt.c
index 908c253187..3aa31c6258 100644
--- a/Python/hamt.c
+++ b/Python/hamt.c
@@ -496,11 +496,7 @@ _hamt_dump_format(_PyUnicodeWriter *writer, const char *format, ...)
int ret;
va_list vargs;
-#ifdef HAVE_STDARG_PROTOTYPES
va_start(vargs, format);
-#else
- va_start(vargs);
-#endif
msg = PyUnicode_FromFormatV(format, vargs);
va_end(vargs);