diff options
author | 2021-10-13 19:25:53 +0200 | |
---|---|---|
committer | 2021-10-13 19:25:53 +0200 | |
commit | aac29af6785712019d34f1a7f15b3c408a4f68ae (patch) | |
tree | ca44f1d999551118d5ab06e5994b6291d387e3e1 /Programs/_testembed.c | |
parent | bpo-45445: Fail if an invalid X-option is provided in the command line (GH-28... (diff) | |
download | cpython-aac29af6785712019d34f1a7f15b3c408a4f68ae.tar.gz cpython-aac29af6785712019d34f1a7f15b3c408a4f68ae.tar.bz2 cpython-aac29af6785712019d34f1a7f15b3c408a4f68ae.zip |
bpo-45434: pyport.h no longer includes <stdlib.h> (GH-28914)
Include <stdlib.h> explicitly in C files.
Python.h includes <wchar.h>.
Diffstat (limited to 'Programs/_testembed.c')
-rw-r--r-- | Programs/_testembed.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Programs/_testembed.c b/Programs/_testembed.c index fa418e27611..b61fe3461bd 100644 --- a/Programs/_testembed.c +++ b/Programs/_testembed.c @@ -11,6 +11,7 @@ #include <Python.h> #include <inttypes.h> #include <stdio.h> +#include <stdlib.h> // putenv() #include <wchar.h> /********************************************************* |