From fd03917786a9036ee87b7df604dfb260cc2420c9 Mon Sep 17 00:00:00 2001 From: Dong-hee Na Date: Mon, 18 Oct 2021 17:31:18 +0900 Subject: bpo-45434: Include stdlib.h for specialize stat (GH-29015) --- Python/specialize.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Python/specialize.c b/Python/specialize.c index 529eabf..264637d 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 // rand() + /* For guidance on adding or extending families of instructions see * ./adaptive.md */ -- cgit v0.12