]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/zstd/doc/educational_decoder/zstd_decompress.h
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / zstd / doc / educational_decoder / zstd_decompress.h
index a01fde331fb802d360e16837318879ccb3a77dc8..2b44eee95cecf21c5beee3cdcb31e132679a9b91 100644 (file)
@@ -1,12 +1,15 @@
 /*
- * Copyright (c) 2016-present, Facebook, Inc.
+ * Copyright (c) 2016-2020, Facebook, Inc.
  * All rights reserved.
  *
  * This source code is licensed under both the BSD-style license (found in the
  * LICENSE file in the root directory of this source tree) and the GPLv2 (found
  * in the COPYING file in the root directory of this source tree).
+ * You may select, at your option, one of the above-listed licenses.
  */
 
+#include <stddef.h>   /* size_t */
+
 /******* EXPOSED TYPES ********************************************************/
 /*
 * Contains the parsed contents of a dictionary
@@ -39,7 +42,7 @@ size_t ZSTD_get_decompressed_size(const void *const src, const size_t src_len);
  * Return a valid dictionary_t pointer for use with dictionary initialization
  * or decompression
  */
-dictionary_t* create_dictionary();
+dictionary_t* create_dictionary(void);
 
 /*
  * Parse a provided dictionary blob for use in decompression