summaryrefslogtreecommitdiffstats
path: root/Modules/_blake2/blake2module.c
diff options
context:
space:
mode:
authorChristian Heimes <christian@python.org>2022-03-26 19:52:24 (GMT)
committerGitHub <noreply@github.com>2022-03-26 19:52:24 (GMT)
commitb16b6bb8dacc41e9e569783890b0c88fcd3b24e8 (patch)
tree5e3c08a7bd917d3f45ddc4a8e195023e3d482731 /Modules/_blake2/blake2module.c
parentc23ddf5ec229b7302437a1cf32d366df5cc5b837 (diff)
downloadcpython-b16b6bb8dacc41e9e569783890b0c88fcd3b24e8.zip
cpython-b16b6bb8dacc41e9e569783890b0c88fcd3b24e8.tar.gz
cpython-b16b6bb8dacc41e9e569783890b0c88fcd3b24e8.tar.bz2
bpo-47095: Use libb2 to provide blake2 implementation (GH-32059)
Diffstat (limited to 'Modules/_blake2/blake2module.c')
-rw-r--r--Modules/_blake2/blake2module.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/Modules/_blake2/blake2module.c b/Modules/_blake2/blake2module.c
index 3b6bba2..44d783b 100644
--- a/Modules/_blake2/blake2module.c
+++ b/Modules/_blake2/blake2module.c
@@ -13,8 +13,7 @@
#endif
#include "Python.h"
-
-#include "impl/blake2.h"
+#include "blake2module.h"
extern PyType_Spec blake2b_type_spec;
extern PyType_Spec blake2s_type_spec;