From cb04a09d2dfd197436a11de504b92773569e19fb Mon Sep 17 00:00:00 2001 From: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> Date: Fri, 27 May 2022 17:00:45 +0530 Subject: GH-93207: Remove HAVE_STDARG_PROTOTYPES configure check for stdarg.h (#93215) --- Python/hamt.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'Python/hamt.c') 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); -- cgit v1.2.1