From: Dong-hee Na Date: Mon, 18 Oct 2021 08:31:18 +0000 (+0900) Subject: bpo-45434: Include stdlib.h for specialize stat (GH-29015) X-Git-Tag: v3.11.0a2~167 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd03917786a9036ee87b7df604dfb260cc2420c9;p=thirdparty%2FPython%2Fcpython.git bpo-45434: Include stdlib.h for specialize stat (GH-29015) --- diff --git a/Python/specialize.c b/Python/specialize.c index 529eabf6bc3a..264637dc9685 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 */