Rich Felker | 3f06369 | 2012-05-05 00:16:21 -0400 | [diff] [blame] | 1 | musl as a whole is licensed under the following standard MIT license: |
Rich Felker | 0b44a03 | 2011-02-12 00:22:29 -0500 | [diff] [blame] | 2 | |
Rich Felker | 3f06369 | 2012-05-05 00:16:21 -0400 | [diff] [blame] | 3 | Copyright © 2005-2012 Rich Felker |
| 4 | |
| 5 | Permission is hereby granted, free of charge, to any person obtaining |
| 6 | a copy of this software and associated documentation files (the |
| 7 | "Software"), to deal in the Software without restriction, including |
| 8 | without limitation the rights to use, copy, modify, merge, publish, |
| 9 | distribute, sublicense, and/or sell copies of the Software, and to |
| 10 | permit persons to whom the Software is furnished to do so, subject to |
| 11 | the following conditions: |
| 12 | |
| 13 | The above copyright notice and this permission notice shall be |
| 14 | included in all copies or substantial portions of the Software. |
| 15 | |
| 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. |
| 19 | IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY |
| 20 | CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, |
| 21 | TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE |
| 22 | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 23 | |
| 24 | |
| 25 | Portions of this software are contributed or derived from software |
| 26 | authored by third parties. Complete details on the copyright status of |
| 27 | all code included in musl follows below: |
| 28 | |
Rich Felker | 0b44a03 | 2011-02-12 00:22:29 -0500 | [diff] [blame] | 29 | |
| 30 | The TRE regular expression implementation (src/regex/reg* and |
Rich Felker | df82f8f | 2012-03-24 17:46:42 -0400 | [diff] [blame] | 31 | src/regex/tre*) is Copyright © 2001-2008 Ville Laurikari and licensed |
| 32 | under a 2-clause BSD license (license text in the source files). The |
| 33 | included version has been heavily modified by Rich Felker in 2012, in |
| 34 | the interests of size, simplicity, and namespace cleanliness. |
Rich Felker | 0b44a03 | 2011-02-12 00:22:29 -0500 | [diff] [blame] | 35 | |
nsz | 3a6c828 | 2012-03-13 16:06:43 +0100 | [diff] [blame] | 36 | Most of the math library code (src/math/* and src/complex/*) is |
| 37 | Copyright © 1993,2004 Sun Microsystems or |
| 38 | Copyright © 2003-2011 David Schultz or |
| 39 | Copyright © 2003-2009 Steven G. Kargl or |
| 40 | Copyright © 2003-2009 Bruce D. Evans or |
| 41 | Copyright © 2008 Stephen L. Moshier |
| 42 | and labelled as such. All have been licensed under extremely |
Rich Felker | 3f06369 | 2012-05-05 00:16:21 -0400 | [diff] [blame] | 43 | permissive terms. See the comments in the individual files for |
| 44 | details. |
Rich Felker | 0b44a03 | 2011-02-12 00:22:29 -0500 | [diff] [blame] | 45 | |
| 46 | The implementation of DES for crypt (src/misc/crypt.c) is Copyright © |
Rich Felker | 3f06369 | 2012-05-05 00:16:21 -0400 | [diff] [blame] | 47 | 1994 David Burren. It is licensed under a BSD license. |
Rich Felker | 0b44a03 | 2011-02-12 00:22:29 -0500 | [diff] [blame] | 48 | |
Rich Felker | 2226370 | 2011-04-27 13:27:04 -0400 | [diff] [blame] | 49 | The smoothsort implementation (src/stdlib/qsort.c) is Copyright © 2011 |
Rich Felker | 3f06369 | 2012-05-05 00:16:21 -0400 | [diff] [blame] | 50 | Valentin Ochs and is licensed under an MIT-style license. |
Rich Felker | 2226370 | 2011-04-27 13:27:04 -0400 | [diff] [blame] | 51 | |
Rich Felker | febbd12 | 2011-06-25 18:18:57 -0400 | [diff] [blame] | 52 | The BSD PRNG implementation (src/prng/random.c) and XSI search API |
| 53 | (src/search/*.c) functions are Copyright © 2011 Szabolcs Nagy and |
| 54 | licensed under following terms: "Permission to use, copy, modify, |
| 55 | and/or distribute this code for any purpose with or without fee is |
| 56 | hereby granted. There is no warranty." |
Rich Felker | c7ce1b2 | 2011-06-23 18:02:23 -0400 | [diff] [blame] | 57 | |
Rich Felker | 8cfbc8b | 2012-05-05 00:02:04 -0400 | [diff] [blame] | 58 | The x86_64 port was written by Nicholas J. Kain. Several files (crt) |
| 59 | were released into the public domain; others are licensed under the |
Rich Felker | 3f06369 | 2012-05-05 00:16:21 -0400 | [diff] [blame] | 60 | standard MIT license terms at the top of this file. See individual |
| 61 | files for their copyright status. |
Rich Felker | 0b9a1ed | 2011-02-15 14:52:11 -0500 | [diff] [blame] | 62 | |
Rich Felker | 0b44a03 | 2011-02-12 00:22:29 -0500 | [diff] [blame] | 63 | All files which have no copyright comments are original works |
Rich Felker | 6f21da6 | 2012-03-16 19:18:00 -0400 | [diff] [blame] | 64 | Copyright © 2005-2012 Rich Felker, the main author of this library. |
Rich Felker | 0b44a03 | 2011-02-12 00:22:29 -0500 | [diff] [blame] | 65 | The decision to exclude such comments is intentional, as it should be |
| 66 | possible to carry around the complete source code on tiny storage |
| 67 | media. All public header files (include/*) should be treated as Public |
| 68 | Domain as they intentionally contain no content which can be covered |
| 69 | by copyright. Some source modules may fall in this category as well. |
| 70 | If you believe that a file is so trivial that it should be in the |
| 71 | Public Domain, please contact me and, if I agree, I will explicitly |
| 72 | release it from copyright. |
Rich Felker | 05ea045 | 2011-02-13 23:32:01 -0500 | [diff] [blame] | 73 | |
| 74 | The following files are trivial, in my opinion not copyrightable in |
| 75 | the first place, and hereby explicitly released to the Public Domain: |
| 76 | |
| 77 | All public headers: include/* |
| 78 | Startup files: crt/* |