bytearrayobject.h and _lzmamodule.c don't use va_list and so don't
need to include <stdarg.h>.
extern "C" {
#endif
-#include <stdarg.h>
-
/* Type PyByteArrayObject represents a mutable array of bytes.
* The Python API is that of a sequence;
* the bytes are mapped to ints in [0, 256).
extern "C" {
#endif
-#include <stdarg.h>
+#include <stdarg.h> // va_list
/*
Type PyBytesObject represents a byte string. An extra zero byte is
/* Module support interface */
-#include <stdarg.h>
+#include <stdarg.h> // va_list
/* If PY_SSIZE_T_CLEAN is defined, each functions treats #-specifier
to mean Py_ssize_t */
#ifndef Py_UNICODEOBJECT_H
#define Py_UNICODEOBJECT_H
-#include <stdarg.h>
+#include <stdarg.h> // va_list
/*
#include "Python.h"
#include "structmember.h" // PyMemberDef
-#include <stdarg.h>
#include <string.h>
#include <lzma.h>