aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python
diff options
context:
space:
mode:
Diffstat (limited to 'Python')
-rw-r--r--Python/hashtable.c1
-rw-r--r--Python/pyhash.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/Python/hashtable.c b/Python/hashtable.c
index 09501de199b..0f07cd20b1a 100644
--- a/Python/hashtable.c
+++ b/Python/hashtable.c
@@ -46,6 +46,7 @@
#include "Python.h"
#include "pycore_hashtable.h"
+#include "pycore_pyhash.h" // _Py_HashPointerRaw()
#define HASHTABLE_MIN_SIZE 16
#define HASHTABLE_HIGH 0.50
diff --git a/Python/pyhash.c b/Python/pyhash.c
index d5ac9f83be6..b2bdab5099d 100644
--- a/Python/pyhash.c
+++ b/Python/pyhash.c
@@ -4,6 +4,7 @@
All the utility functions (_Py_Hash*()) return "-1" to signify an error.
*/
#include "Python.h"
+#include "pycore_pyhash.h" // _Py_HashSecret_t
#ifdef __APPLE__
# include <libkern/OSByteOrder.h>