From cecd9e0af3b26370cc11d1dfae7178fbeb86b5c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lemburg?= Date: Tue, 31 Jul 2001 14:23:52 +0000 Subject: [PATCH] va_list is defined in stdarg.h. --- Include/pyerrors.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Include/pyerrors.h b/Include/pyerrors.h index bfc36ae03ac..3b2bfbcbb9a 100644 --- a/Include/pyerrors.h +++ b/Include/pyerrors.h @@ -116,6 +116,7 @@ extern DL_IMPORT(PyObject *) PyErr_ProgramText(char *, int); # define vsnprintf _vsnprintf #endif #ifndef HAVE_SNPRINTF +#include extern DL_IMPORT(int) PyOS_snprintf(char *str, size_t size, const char *format, ...); extern DL_IMPORT(int) PyOS_vsnprintf(char *str, size_t size, const char *format, va_list va); #else