summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
l---------ccan/str/LICENSE1
-rw-r--r--ccan/str/_info2
-rw-r--r--ccan/str/debug.c1
-rw-r--r--ccan/str/str.c1
-rw-r--r--ccan/str/str.h2
-rw-r--r--ccan/str/str_debug.h1
6 files changed, 2 insertions, 6 deletions
diff --git a/ccan/str/LICENSE b/ccan/str/LICENSE
deleted file mode 120000
index dc314eca..00000000
--- a/ccan/str/LICENSE
+++ /dev/null
@@ -1 +0,0 @@
-../../licenses/LGPL-2.1 \ No newline at end of file
diff --git a/ccan/str/_info b/ccan/str/_info
index 2d52291a..a6858c3c 100644
--- a/ccan/str/_info
+++ b/ccan/str/_info
@@ -35,7 +35,7 @@
* return 0;
* }
*
- * License: LGPL (v2.1 or any later version)
+ * License: Public domain
* Author: Rusty Russell <rusty@rustcorp.com.au>
*/
int main(int argc, char *argv[])
diff --git a/ccan/str/debug.c b/ccan/str/debug.c
index 42d19f81..9ef75676 100644
--- a/ccan/str/debug.c
+++ b/ccan/str/debug.c
@@ -1,4 +1,3 @@
-/* Licensed under LGPLv2.1+ - see LICENSE file for details */
#include "config.h"
#include <ccan/str/str_debug.h>
#include <assert.h>
diff --git a/ccan/str/str.c b/ccan/str/str.c
index 0271a598..fa9809fb 100644
--- a/ccan/str/str.c
+++ b/ccan/str/str.c
@@ -1,4 +1,3 @@
-/* Licensed under LGPLv2.1+ - see LICENSE file for details */
#include <ccan/str/str.h>
size_t strcount(const char *haystack, const char *needle)
diff --git a/ccan/str/str.h b/ccan/str/str.h
index 7392e30f..14cd65ab 100644
--- a/ccan/str/str.h
+++ b/ccan/str/str.h
@@ -1,4 +1,4 @@
-/* Licensed under LGPLv2.1+ - see LICENSE file for details */
+/* Placed into the public domain. */
#ifndef CCAN_STR_H
#define CCAN_STR_H
#include "config.h"
diff --git a/ccan/str/str_debug.h b/ccan/str/str_debug.h
index f029e8ef..6b564776 100644
--- a/ccan/str/str_debug.h
+++ b/ccan/str/str_debug.h
@@ -1,4 +1,3 @@
-/* Licensed under LGPLv2.1+ - see LICENSE file for details */
#ifndef CCAN_STR_DEBUG_H
#define CCAN_STR_DEBUG_H