summaryrefslogtreecommitdiffstats
path: root/Modules/sha256module.c
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/sha256module.c')
-rw-r--r--Modules/sha256module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/sha256module.c b/Modules/sha256module.c
index fac7073..5858071 100644
--- a/Modules/sha256module.c
+++ b/Modules/sha256module.c
@@ -18,9 +18,9 @@
#include "Python.h"
#include "pycore_bitutils.h" // _Py_bswap32()
+#include "pycore_strhex.h" // _Py_strhex()
#include "structmember.h" // PyMemberDef
#include "hashlib.h"
-#include "pystrhex.h"
/*[clinic input]
module _sha256