diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-01-04 10:13:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-04 10:13:15 +0100 |
commit | bdbcf29246bad902e94c3a5fb1fd1abb06aeb2ae (patch) | |
tree | c85c2c9a80d04e338cf39d0fed3fdba2d0291b29 /thirdparty/zstd/common/xxhash.c | |
parent | b1e3215f3a316cfaf518747f7dafba4cc0d8d291 (diff) | |
parent | e64391f47bf95ab4cdb65683623979ee6790836e (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.c | 1 |
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() */ |