summaryrefslogtreecommitdiffstats
path: root/Objects/listobject.c
diff options
context:
space:
mode:
Diffstat (limited to 'Objects/listobject.c')
-rw-r--r--Objects/listobject.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/Objects/listobject.c b/Objects/listobject.c
index 05743cd..be84cf9 100644
--- a/Objects/listobject.c
+++ b/Objects/listobject.c
@@ -5,12 +5,7 @@
#include "pycore_interp.h" // PyInterpreterState.list
#include "pycore_object.h" // _PyObject_GC_TRACK()
#include "pycore_tuple.h" // _PyTuple_FromArray()
-
-#ifdef STDC_HEADERS
#include <stddef.h>
-#else
-#include <sys/types.h> /* For size_t */
-#endif
/*[clinic input]
class list "PyListObject *" "&PyList_Type"