summaryrefslogtreecommitdiffstats
path: root/Include/pyhash.h
diff options
context:
space:
mode:
Diffstat (limited to 'Include/pyhash.h')
-rw-r--r--Include/pyhash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/pyhash.h b/Include/pyhash.h
index dbcc974..2f39858 100644
--- a/Include/pyhash.h
+++ b/Include/pyhash.h
@@ -8,7 +8,7 @@ extern "C" {
/* Helpers for hash functions */
#ifndef Py_LIMITED_API
PyAPI_FUNC(Py_hash_t) _Py_HashDouble(double);
-PyAPI_FUNC(Py_hash_t) _Py_HashPointer(void*);
+PyAPI_FUNC(Py_hash_t) _Py_HashPointer(const void*);
PyAPI_FUNC(Py_hash_t) _Py_HashBytes(const void*, Py_ssize_t);
#endif