bpo-45723: Prepare support for autoconf 2.71 (GH-29441)

This commit is contained in:
Christian Heimes 2021-11-08 20:31:14 +02:00 committed by GitHub
parent 9bd0cf5970
commit cbab997efb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 397 additions and 568 deletions

View file

@ -13,14 +13,7 @@
#include "pycore_moduleobject.h" // _PyModule_GetState()
#include "structmember.h" // PyMemberDef
#include <stddef.h> // offsetof()
#ifdef STDC_HEADERS
#include <stddef.h>
#else /* !STDC_HEADERS */
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h> /* For size_t */
#endif /* HAVE_SYS_TYPES_H */
#endif /* !STDC_HEADERS */
/*[clinic input]
module array