From 03cf6761c85cb09318fe1761e437e119c2503c50 Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Sun, 26 Jan 2025 11:47:34 +0100 Subject: [PATCH] Fix multiple definitions for Py_fclose --- pythoncapi_compat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pythoncapi_compat.h b/pythoncapi_compat.h index 8c1822d..7a69f76 100644 --- a/pythoncapi_compat.h +++ b/pythoncapi_compat.h @@ -1968,7 +1968,7 @@ static inline FILE* Py_fopen(PyObject *path, const char *mode) #endif } -int Py_fclose(FILE *file) +static inline int Py_fclose(FILE *file) { return fclose(file); }