From 109bd374741860753f8d6929f53264f7fc4b192e Mon Sep 17 00:00:00 2001 From: Nick Terrell Date: Thu, 27 Sep 2018 15:22:34 -0700 Subject: [PATCH] Include stddef.h for size_t --- lib/common/xxhash.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/common/xxhash.c b/lib/common/xxhash.c index 9d9c0e963..532b81619 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 +#include /* size_t */ static void* XXH_malloc(size_t s) { return malloc(s); } static void XXH_free (void* p) { free(p); } /* for memcpy() */