1
0

COPYRIGHT 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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.c) is Copyright ©
  37. 1994 David Burren. It is licensed under a BSD license.
  38. The smoothsort implementation (src/stdlib/qsort.c) is Copyright © 2011
  39. Valentin Ochs and is licensed under an MIT-style license.
  40. The BSD PRNG implementation (src/prng/random.c) and XSI search API
  41. (src/search/*.c) functions are Copyright © 2011 Szabolcs Nagy and
  42. licensed under following terms: "Permission to use, copy, modify,
  43. and/or distribute this code for any purpose with or without fee is
  44. hereby granted. There is no warranty."
  45. The x86_64 port was written by Nicholas J. Kain. Several files (crt)
  46. were released into the public domain; others are licensed under the
  47. standard MIT license terms at the top of this file. See individual
  48. files for their copyright status.
  49. All files which have no copyright comments are original works
  50. Copyright © 2005-2012 Rich Felker, the main author of this library.
  51. The decision to exclude such comments is intentional, as it should be
  52. possible to carry around the complete source code on tiny storage
  53. media. All public header files (include/*) should be treated as Public
  54. Domain as they intentionally contain no content which can be covered
  55. by copyright. Some source modules may fall in this category as well.
  56. If you believe that a file is so trivial that it should be in the
  57. Public Domain, please contact me and, if I agree, I will explicitly
  58. release it from copyright.
  59. The following files are trivial, in my opinion not copyrightable in
  60. the first place, and hereby explicitly released to the Public Domain:
  61. All public headers: include/*
  62. Startup files: crt/*