1 #ifndef Py_INTERNAL_HASH_H
2 #define Py_INTERNAL_HASH_H
3 
4 #ifndef Py_BUILD_CORE
5 #  error "this header requires Py_BUILD_CORE define"
6 #endif
7 
8 uint64_t _Py_KeyedHash(uint64_t, const char *, Py_ssize_t);
9 
10 #endif
11