From aff57ada0400d6c8df3d025d39eb4d3033dc5a0c Mon Sep 17 00:00:00 2001 From: Petr Špaček Date: Fri, 14 Feb 2020 09:08:02 +0100 Subject: contrib/murmurhash3: machine readable license --- contrib/murmurhash3/murmurhash3.c | 5 ++++- contrib/murmurhash3/murmurhash3.h | 3 +++ 2 files changed, 7 insertions(+), 1 deletion(-) (limited to 'contrib') 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" diff --git a/contrib/murmurhash3/murmurhash3.h b/contrib/murmurhash3/murmurhash3.h index b4507b3a..d849961e 100644 --- a/contrib/murmurhash3/murmurhash3.h +++ b/contrib/murmurhash3/murmurhash3.h @@ -1,3 +1,6 @@ +/* SPDX-License-Identifier: CC0-1.0 + * Source: https://github.com/aappleby/smhasher/blob/master/src/MurmurHash3.cpp */ + #pragma once #include -- cgit v1.2.3