contrib/python-zstandard/zstd/common/xxhash.c
changeset 40121 73fef626dae3
parent 37495 b1fb341d8a61
child 42937 69de49c4e39c
--- a/contrib/python-zstandard/zstd/common/xxhash.c	Tue Sep 25 20:55:03 2018 +0900
+++ b/contrib/python-zstandard/zstd/common/xxhash.c	Mon Oct 08 16:27:40 2018 -0700
@@ -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() */