diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2011-09-26 20:12:15 +0930 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2011-09-26 20:12:15 +0930 |
commit | 942f2788e165bb203b0f160f29bd4592f32dc344 (patch) | |
tree | fd69157c169aad8f7d214b3394466b84f70234b6 | |
parent | 98d7798706f6222f052c35126e0feec97c101d6a (diff) |
str: relicense to public domain.
LGPL is overkill for trivial wrappers like this.
l--------- | ccan/str/LICENSE | 1 | ||||
-rw-r--r-- | ccan/str/_info | 2 | ||||
-rw-r--r-- | ccan/str/debug.c | 1 | ||||
-rw-r--r-- | ccan/str/str.c | 1 | ||||
-rw-r--r-- | ccan/str/str.h | 2 | ||||
-rw-r--r-- | ccan/str/str_debug.h | 1 |
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 |