diff options
| author | Dong-hee Na <donghee.na@python.org> | 2021-10-18 17:31:18 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-18 17:31:18 +0900 |
| commit | fd03917786a9036ee87b7df604dfb260cc2420c9 (patch) | |
| tree | c54d0fc5e40ff0a0b5eb068daeb0c4fb3d5ed735 /Python/specialize.c | |
| parent | 54a4e1b53a18f0c7420ba03de9608194c4413fc2 (diff) | |
| download | cpython-git-fd03917786a9036ee87b7df604dfb260cc2420c9.tar.gz | |
bpo-45434: Include stdlib.h for specialize stat (GH-29015)
Diffstat (limited to 'Python/specialize.c')
| -rw-r--r-- | Python/specialize.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/specialize.c b/Python/specialize.c index 529eabf6bc..264637dc96 100644 --- a/Python/specialize.c +++ b/Python/specialize.c @@ -1,4 +1,3 @@ - #include "Python.h" #include "pycore_code.h" #include "pycore_dict.h" @@ -8,6 +7,8 @@ #include "opcode.h" #include "structmember.h" // struct PyMemberDef, T_OFFSET_EX +#include <stdlib.h> // rand() + /* For guidance on adding or extending families of instructions see * ./adaptive.md */ |
