Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
use extern for _Py_jit_entry in _testinternalcapi
  • Loading branch information
ashm-dev committed Mar 11, 2026
commit ec9b77593e6d3977038c6e6108494934e2d33399
2 changes: 1 addition & 1 deletion Modules/_testinternalcapi/interpreter.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ stop_tracing_and_jit(PyThreadState *tstate, _PyInterpreterFrame *frame)
}
#endif

_PyJitEntryFuncPtr _Py_jit_entry;
extern _PyJitEntryFuncPtr _Py_jit_entry;

#if _Py_TAIL_CALL_INTERP
#include "test_targets.h"
Expand Down