From 9ea277a788eabec102e8fe613b7f1e27995d5918 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Tue, 28 May 2019 12:24:00 +0200 Subject: bpo-36900: Fix compilation on HP-UX (GH-13614) dynload_hpux.c: add #include "pycore_pystate.h" for _PyInterpreterState_GET_UNSAFE(). --- Python/dynload_hpux.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Python/dynload_hpux.c b/Python/dynload_hpux.c index da9baa4..e59d004 100644 --- a/Python/dynload_hpux.c +++ b/Python/dynload_hpux.c @@ -6,6 +6,7 @@ #include "Python.h" #include "importdl.h" +#include "pycore_pystate.h" #if defined(__hp9000s300) #define FUNCNAME_PATTERN "_%.20s_%.200s" -- cgit v0.12