1
0

COPYRIGHT 4.3 KB

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