diff options
author | Victor Stinner <vstinner@python.org> | 2021-10-11 21:30:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-11 21:30:00 (GMT) |
commit | 03ea862b8a8234176761240ba122254e9eb11663 (patch) | |
tree | 54558cc38bff4fd02bdd3a3f07d5c41c1bee7351 /Include/Python.h | |
parent | 7103356455c8b0c2ba3523929327756413337a31 (diff) | |
download | cpython-03ea862b8a8234176761240ba122254e9eb11663.zip cpython-03ea862b8a8234176761240ba122254e9eb11663.tar.gz cpython-03ea862b8a8234176761240ba122254e9eb11663.tar.bz2 |
bpo-45434: Python.h no longer includes <stdlib.h> (GH-28888)
Diffstat (limited to 'Include/Python.h')
-rw-r--r-- | Include/Python.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/Python.h b/Include/Python.h index fa77521..8c84c90 100644 --- a/Include/Python.h +++ b/Include/Python.h @@ -25,7 +25,6 @@ #ifdef HAVE_ERRNO_H # include <errno.h> // errno #endif -#include <stdlib.h> #ifndef MS_WINDOWS # include <unistd.h> #endif |