bpo-45434: Include stdlib.h for specialize stat (GH-29015)

This commit is contained in:
Dong-hee Na 2021-10-18 17:31:18 +09:00 committed by GitHub
parent 54a4e1b53a
commit fd03917786
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
*/