diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-03-22 15:29:02 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-03-22 15:29:02 (GMT) |
commit | ff9c5346ea4388bb0f77c9f92415fbfbc92e429f (patch) | |
tree | 53966f06df6484a2d2c74bc5997235553dd0dea3 /Include | |
parent | 84aab09421330711607671ed8bc637ea2a8e273c (diff) | |
download | cpython-ff9c5346ea4388bb0f77c9f92415fbfbc92e429f.zip cpython-ff9c5346ea4388bb0f77c9f92415fbfbc92e429f.tar.gz cpython-ff9c5346ea4388bb0f77c9f92415fbfbc92e429f.tar.bz2 |
Issue #26588: fix compilation on Windows
Diffstat (limited to 'Include')
-rw-r--r-- | Include/pymem.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Include/pymem.h b/Include/pymem.h index 941e00f..3fac523 100644 --- a/Include/pymem.h +++ b/Include/pymem.h @@ -59,6 +59,8 @@ PyAPI_FUNC(int) _PyTraceMalloc_Untrack( PyAPI_FUNC(PyObject*) _PyTraceMalloc_GetTraceback( _PyTraceMalloc_domain_t domain, Py_uintptr_t ptr); + +PyAPI_DATA(int) tracemalloc_debug; #endif /* !Py_LIMITED_API */ |