From 196998e220d6ca030e5a1c8ad63fcaed8e049a98 Mon Sep 17 00:00:00 2001 From: Geoffrey Thomas Date: Tue, 27 Jul 2021 18:58:12 -0400 Subject: closes bpo-44751: Move crypt.h include from public header to _cryptmodule (GH-27394) Automerge-Triggered-By: GH:benjaminp --- Modules/_cryptmodule.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Modules/_cryptmodule.c') diff --git a/Modules/_cryptmodule.c b/Modules/_cryptmodule.c index a95f55a63c..72a4f44600 100644 --- a/Modules/_cryptmodule.c +++ b/Modules/_cryptmodule.c @@ -4,6 +4,9 @@ #include "Python.h" #include +#ifdef HAVE_CRYPT_H +#include +#endif /* Module crypt */ -- cgit v1.2.1