closes bpo-44751: Move crypt.h include from public header to _cryptmodule (GH-27394)

Automerge-Triggered-By: GH:benjaminp
(cherry picked from commit 196998e220)

Co-authored-by: Geoffrey Thomas <geofft@ldpreload.com>
This commit is contained in:
Miss Islington (bot) 2021-09-29 13:47:58 -07:00 committed by GitHub
parent 87ecdb227f
commit 9626ac8b74
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 13 deletions

View file

@ -4,6 +4,9 @@
#include "Python.h"
#include <sys/types.h>
#ifdef HAVE_CRYPT_H
#include <crypt.h>
#endif
/* Module crypt */