1This directory contains source code for the standard double-precision math 2functions. 3 4The files lgamma.c, log10.c and tanh.c are too small to have a meaningful 5copyright or license. 6 7The file copysign.c contains a double version of the float copysignf provided 8in libm/math.c for use in DEBUG builds where the standard library copy is 9not available. 10 11The rest of the files in this directory are copied from the musl library, 12v1.1.16, and, unless otherwise stated in the individual file, have the 13following copyright and MIT license: 14 15---------------------------------------------------------------------- 16Copyright © 2005-2014 Rich Felker, et al. 17 18Permission is hereby granted, free of charge, to any person obtaining 19a copy of this software and associated documentation files (the 20"Software"), to deal in the Software without restriction, including 21without limitation the rights to use, copy, modify, merge, publish, 22distribute, sublicense, and/or sell copies of the Software, and to 23permit persons to whom the Software is furnished to do so, subject to 24the following conditions: 25 26The above copyright notice and this permission notice shall be 27included in all copies or substantial portions of the Software. 28 29THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 30EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 31MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 32IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY 33CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 34TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 35SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 36---------------------------------------------------------------------- 37