diff options
Diffstat (limited to 'lib/common/xxhash.c')
-rw-r--r-- | lib/common/xxhash.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/common/xxhash.c b/lib/common/xxhash.c index 9d9c0e963cbf..532b8161929d 100644 --- a/lib/common/xxhash.c +++ b/lib/common/xxhash.c @@ -98,6 +98,7 @@ /* Modify the local functions below should you wish to use some other memory routines */ /* for malloc(), free() */ #include <stdlib.h> +#include <stddef.h> /* size_t */ static void* XXH_malloc(size_t s) { return malloc(s); } static void XXH_free (void* p) { free(p); } /* for memcpy() */ |