From: Nick Terrell Date: Thu, 27 Sep 2018 22:22:34 +0000 (-0700) Subject: Include stddef.h for size_t X-Git-Tag: v1.3.6^2~15^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=109bd374741860753f8d6929f53264f7fc4b192e;p=thirdparty%2Fzstd.git Include stddef.h for size_t --- 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() */