diff options
author | Christian Heimes <christian@python.org> | 2021-11-08 18:31:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-08 18:31:14 (GMT) |
commit | cbab997efb3ba5123dc8d9f706184fa8e634b3ec (patch) | |
tree | b0b511a9da72b5d8e2173553427efe5b0058373f /Modules/arraymodule.c | |
parent | 9bd0cf5970997b63d296e30d51e7bb9a15dcabaf (diff) | |
download | cpython-cbab997efb3ba5123dc8d9f706184fa8e634b3ec.zip cpython-cbab997efb3ba5123dc8d9f706184fa8e634b3ec.tar.gz cpython-cbab997efb3ba5123dc8d9f706184fa8e634b3ec.tar.bz2 |
bpo-45723: Prepare support for autoconf 2.71 (GH-29441)
Diffstat (limited to 'Modules/arraymodule.c')
-rw-r--r-- | Modules/arraymodule.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Modules/arraymodule.c b/Modules/arraymodule.c index 030ede5..8e43063 100644 --- a/Modules/arraymodule.c +++ b/Modules/arraymodule.c @@ -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 |