From 8b0ecbb991589bbb2628ea18fb31a22272e9f261 Mon Sep 17 00:00:00 2001 From: ale <ale@incal.net> Date: Mon, 24 Oct 2022 13:48:33 +0100 Subject: [PATCH] Move py3compat.h include past the PY_SSIZE_T_CLEAN definition --- src/python/sso/sso_python.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/sso/sso_python.c b/src/python/sso/sso_python.c index ec647f3..e7d2dc7 100644 --- a/src/python/sso/sso_python.c +++ b/src/python/sso/sso_python.c @@ -1,8 +1,8 @@ #include "sso/sso.h" -#include "py3compat.h" #include <stdlib.h> #define PY_SSIZE_T_CLEAN +#include "py3compat.h" #include <Python.h> #define PYSSO_STATIC_SIGN_BUFSIZE 1024 -- GitLab