From ab23194f379101157f503ab4310d260dc506cc32 Mon Sep 17 00:00:00 2001 From: Dmitry Aminev Date: Mon, 13 Apr 2020 14:32:19 +0200 Subject: Fix _PYRMQ_INLINE to adapt to changes in python3.7+ C API --- Modules/_librabbitmq/connection.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_librabbitmq/connection.h b/Modules/_librabbitmq/connection.h index c7e52e4..9dea28d 100644 --- a/Modules/_librabbitmq/connection.h +++ b/Modules/_librabbitmq/connection.h @@ -49,7 +49,7 @@ # elif defined(__GNUC__) && !defined(__GNUC_STDC_INLINE__) # define _PYRMQ_INLINE extern __inline # else -# define _PYRMQ_INLINE __inline +# define _PYRMQ_INLINE extern __inline # endif #endif -- cgit v1.2.1