diff options
Diffstat (limited to 'contrib/murmurhash3/murmurhash3.c')
-rw-r--r-- | contrib/murmurhash3/murmurhash3.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/contrib/murmurhash3/murmurhash3.c b/contrib/murmurhash3/murmurhash3.c index ac28f699..995c2366 100644 --- a/contrib/murmurhash3/murmurhash3.c +++ b/contrib/murmurhash3/murmurhash3.c @@ -1,5 +1,8 @@ /* This is MurmurHash3. The original C++ code was placed in the public domain - * by its author, Austin Appleby. */ + * by its author, Austin Appleby. + * + * SPDX-License-Identifier: CC0-1.0 + * Source: https://github.com/aappleby/smhasher/blob/master/src/MurmurHash3.cpp */ #include "murmurhash3.h" #include "string.h" |