diff options
Diffstat (limited to 'stdlib/siphash.c')
| -rw-r--r-- | stdlib/siphash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/siphash.c b/stdlib/siphash.c index 671fbad6..a8e64c8e 100644 --- a/stdlib/siphash.c +++ b/stdlib/siphash.c @@ -46,7 +46,7 @@ public uint64_t TOMO_HASH_KEY[2] = {23, 42}; // Randomized in tomo_init() #include "siphash-internals.h" -public uint64_t siphash24(const uint8_t *src, size_t src_sz) { +PUREFUNC public uint64_t siphash24(const uint8_t *src, size_t src_sz) { siphash sh; if ((uint64_t)src % __alignof__(uint64_t) == 0) { #pragma GCC diagnostic ignored "-Wcast-align" |
