From: Rusty Russell Date: Thu, 15 Nov 2012 02:28:34 +0000 (+1030) Subject: likely: relicense to CC0. X-Git-Url: https://git.ozlabs.org/?p=ccan;a=commitdiff_plain;h=33527c60ba3c5c72ed31fbb064c38db2b3d2c733 likely: relicense to CC0. Signed-off-by: Rusty Russell --- diff --git a/ccan/likely/LICENSE b/ccan/likely/LICENSE index dc314eca..b7951dab 120000 --- a/ccan/likely/LICENSE +++ b/ccan/likely/LICENSE @@ -1 +1 @@ -../../licenses/LGPL-2.1 \ No newline at end of file +../../licenses/CC0 \ No newline at end of file diff --git a/ccan/likely/_info b/ccan/likely/_info index ac43cc2b..b6885ef1 100644 --- a/ccan/likely/_info +++ b/ccan/likely/_info @@ -10,9 +10,9 @@ * compiler and the reader. * * With CCAN_LIKELY_DEBUG defined, it provides statistics for each - * likely()/unlikely() call. + * likely()/unlikely() call (but note that this requires LGPL dependencies). * - * License: LGPL (v2.1 or any later version) + * License: CC0 (Public domain) * Author: Rusty Russell * * Example: diff --git a/ccan/likely/likely.c b/ccan/likely/likely.c index 1114efc2..83e8d6fb 100644 --- a/ccan/likely/likely.c +++ b/ccan/likely/likely.c @@ -1,4 +1,4 @@ -/* Licensed under LGPLv2.1+ - see LICENSE file for details */ +/* CC0 (Public domain) - see LICENSE file for details. */ #ifdef CCAN_LIKELY_DEBUG #include #include diff --git a/ccan/likely/likely.h b/ccan/likely/likely.h index 8683a2c9..a8f003d7 100644 --- a/ccan/likely/likely.h +++ b/ccan/likely/likely.h @@ -1,4 +1,4 @@ -/* Licensed under LGPLv2.1+ - see LICENSE file for details */ +/* CC0 (Public domain) - see LICENSE file for details */ #ifndef CCAN_LIKELY_H #define CCAN_LIKELY_H #include "config.h"