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 --- Include/Python.h | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'Include/Python.h') diff --git a/Include/Python.h b/Include/Python.h index 04858f281ca..a83befa3117 100644 --- a/Include/Python.h +++ b/Include/Python.h @@ -35,19 +35,6 @@ #ifndef MS_WINDOWS #include #endif -#ifdef HAVE_CRYPT_H -#if defined(HAVE_CRYPT_R) && !defined(_GNU_SOURCE) -/* Required for glibc to expose the crypt_r() function prototype. */ -# define _GNU_SOURCE -# define _Py_GNU_SOURCE_FOR_CRYPT -#endif -#include -#ifdef _Py_GNU_SOURCE_FOR_CRYPT -/* Don't leak the _GNU_SOURCE define to other headers. */ -# undef _GNU_SOURCE -# undef _Py_GNU_SOURCE_FOR_CRYPT -#endif -#endif /* For size_t? */ #ifdef HAVE_STDDEF_H -- cgit v1.2.3