Browse Source

likely: relicense to CC0.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Rusty Russell 13 years ago
parent
commit
33527c60ba
4 changed files with 5 additions and 5 deletions
  1. 1 1
      ccan/likely/LICENSE
  2. 2 2
      ccan/likely/_info
  3. 1 1
      ccan/likely/likely.c
  4. 1 1
      ccan/likely/likely.h

+ 1 - 1
ccan/likely/LICENSE

@@ -1 +1 @@
-../../licenses/LGPL-2.1
+../../licenses/CC0

+ 2 - 2
ccan/likely/_info

@@ -10,9 +10,9 @@
  * compiler and the reader.
  * compiler and the reader.
  *
  *
  * With CCAN_LIKELY_DEBUG defined, it provides statistics for each
  * 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 <rusty@rustcorp.com.au>
  * Author: Rusty Russell <rusty@rustcorp.com.au>
  *
  *
  * Example:
  * Example:

+ 1 - 1
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
 #ifdef CCAN_LIKELY_DEBUG
 #include <ccan/likely/likely.h>
 #include <ccan/likely/likely.h>
 #include <ccan/hash/hash.h>
 #include <ccan/hash/hash.h>

+ 1 - 1
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
 #ifndef CCAN_LIKELY_H
 #define CCAN_LIKELY_H
 #define CCAN_LIKELY_H
 #include "config.h"
 #include "config.h"