From: Petr Špaček Date: Fri, 14 Feb 2020 08:08:02 +0000 (+0100) Subject: contrib/murmurhash3: machine readable license X-Git-Tag: v5.1.0~42^2~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aff57ada0400d6c8df3d025d39eb4d3033dc5a0c;p=thirdparty%2Fknot-resolver.git contrib/murmurhash3: machine readable license --- diff --git a/contrib/murmurhash3/murmurhash3.c b/contrib/murmurhash3/murmurhash3.c index ac28f6993..995c2366e 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 b4507b3ae..d849961eb 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