xref: /freebsd-src/sys/contrib/zstd/lib/common/xxhash.c (revision 5ff13fbc199bdf5f0572845351c68ee5ca828e71)
10c16b537SWarner Losh /*
20c16b537SWarner Losh  *  xxHash - Fast Hash algorithm
3*5ff13fbcSAllan Jude  *  Copyright (c) Yann Collet, Facebook, Inc.
40c16b537SWarner Losh  *
50c16b537SWarner Losh  *  You can contact the author at :
60c16b537SWarner Losh  *  - xxHash homepage: http://www.xxhash.com
70c16b537SWarner Losh  *  - xxHash source repository : https://github.com/Cyan4973/xxHash
837f1f268SConrad Meyer  *
937f1f268SConrad Meyer  * This source code is licensed under both the BSD-style license (found in the
1037f1f268SConrad Meyer  * LICENSE file in the root directory of this source tree) and the GPLv2 (found
1137f1f268SConrad Meyer  * in the COPYING file in the root directory of this source tree).
1237f1f268SConrad Meyer  * You may select, at your option, one of the above-listed licenses.
130c16b537SWarner Losh */
140c16b537SWarner Losh 
150c16b537SWarner Losh 
16*5ff13fbcSAllan Jude 
17*5ff13fbcSAllan Jude /*
18*5ff13fbcSAllan Jude  * xxhash.c instantiates functions defined in xxhash.h
190c16b537SWarner Losh  */
200c16b537SWarner Losh 
21*5ff13fbcSAllan Jude #define XXH_STATIC_LINKING_ONLY   /* access advanced declarations */
22*5ff13fbcSAllan Jude #define XXH_IMPLEMENTATION   /* access definitions */
230c16b537SWarner Losh 
240c16b537SWarner Losh #include "xxhash.h"
25