#define FORCE_INLINE static __always_inline
-static U32 XXH_read32(const void* memPtr)
-{
- return MEM_read32(memPtr);
-}
-
-static U64 XXH_read64(const void* memPtr)
-{
- return MEM_read64(memPtr);
-}
-
-
/* ****************************************
* Compiler-specific Functions and Macros
******************************************/
/* **************************
* Utils
****************************/
-XXH_PUBLIC_API void XXH32_copyState(XXH32_state_t* restrict dst_state, const XXH32_state_t* restrict src_state);
-XXH_PUBLIC_API void XXH64_copyState(XXH64_state_t* restrict dst_state, const XXH64_state_t* restrict src_state);
+XXH_PUBLIC_API void XXH32_copyState(XXH32_state_t* dst_state, const XXH32_state_t* src_state);
+XXH_PUBLIC_API void XXH64_copyState(XXH64_state_t* dst_state, const XXH64_state_t* src_state);
/* **************************