From 0a883a76cda8205023c52211968bcf87bd47fd6e Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Thu, 14 Oct 2021 23:41:06 +0200 Subject: bpo-35134: Add Include/cpython/floatobject.h (GH-28957) Split Include/floatobject.h into sub-files: add Include/cpython/floatobject.h and Include/internal/pycore_floatobject.h. --- Python/marshal.c | 1 + 1 file changed, 1 insertion(+) (limited to 'Python/marshal.c') diff --git a/Python/marshal.c b/Python/marshal.c index c8a48a55de..e9ad566b71 100644 --- a/Python/marshal.c +++ b/Python/marshal.c @@ -11,6 +11,7 @@ #include "Python.h" #include "pycore_call.h" // _PyObject_CallNoArgs() #include "pycore_code.h" // _PyCode_New() +#include "pycore_floatobject.h" // _PyFloat_Pack8() #include "pycore_hashtable.h" // _Py_hashtable_t #include "longintrepr.h" #include "code.h" -- cgit v1.2.1