summaryrefslogtreecommitdiff
path: root/thirdparty/zstd/common/xxhash.c
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2019-01-04 10:13:15 +0100
committerGitHub <noreply@github.com>2019-01-04 10:13:15 +0100
commitbdbcf29246bad902e94c3a5fb1fd1abb06aeb2ae (patch)
treec85c2c9a80d04e338cf39d0fed3fdba2d0291b29 /thirdparty/zstd/common/xxhash.c
parentb1e3215f3a316cfaf518747f7dafba4cc0d8d291 (diff)
parente64391f47bf95ab4cdb65683623979ee6790836e (diff)
Merge pull request #24754 from guilhermefelipecgs/fix_17374
Update zstd to 1.3.8
Diffstat (limited to 'thirdparty/zstd/common/xxhash.c')
-rw-r--r--thirdparty/zstd/common/xxhash.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/thirdparty/zstd/common/xxhash.c b/thirdparty/zstd/common/xxhash.c
index 9d9c0e963c..532b816192 100644
--- a/thirdparty/zstd/common/xxhash.c
+++ b/thirdparty/zstd/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() */