From 70fb17c36d98ba1383afe41fca0d3fa061377117 Mon Sep 17 00:00:00 2001 From: HTG-YT <39023054+HTG-YT@users.noreply.github.com> Date: Mon, 3 Jan 2022 20:16:22 +0800 Subject: [PATCH] update spdx-license-identifier --- src/lib.rs | 2 +- src/math/acos.rs | 2 +- src/math/acosf.rs | 2 +- src/math/acosh.rs | 2 +- src/math/acoshf.rs | 2 +- src/math/asin.rs | 2 +- src/math/asinf.rs | 2 +- src/math/asinh.rs | 2 +- src/math/asinhf.rs | 2 +- src/math/atan.rs | 2 +- src/math/atan2.rs | 2 +- src/math/atan2f.rs | 2 +- src/math/atanf.rs | 2 +- src/math/atanh.rs | 2 +- src/math/atanhf.rs | 2 +- src/math/cbrt.rs | 2 +- src/math/cbrtf.rs | 2 +- src/math/ceil.rs | 2 +- src/math/ceilf.rs | 2 +- src/math/copysign.rs | 2 +- src/math/copysignf.rs | 2 +- src/math/cos.rs | 2 +- src/math/cosf.rs | 2 +- src/math/cosh.rs | 2 +- src/math/coshf.rs | 2 +- src/math/erf.rs | 2 +- src/math/erfc.rs | 2 +- src/math/erfcf.rs | 2 +- src/math/erff.rs | 2 +- src/math/exp.rs | 2 +- src/math/exp10.rs | 2 +- src/math/exp10f.rs | 2 +- src/math/exp2.rs | 2 +- src/math/exp2f.rs | 2 +- src/math/expf.rs | 2 +- src/math/expm1.rs | 2 +- src/math/expm1f.rs | 2 +- src/math/fabs.rs | 2 +- src/math/fabsf.rs | 2 +- src/math/fdim.rs | 2 +- src/math/fdimf.rs | 2 +- src/math/floor.rs | 2 +- src/math/floorf.rs | 2 +- src/math/fma.rs | 2 +- src/math/fmaf.rs | 2 +- src/math/fmax.rs | 2 +- src/math/fmaxf.rs | 2 +- src/math/fmin.rs | 2 +- src/math/fminf.rs | 2 +- src/math/fmod.rs | 2 +- src/math/fmodf.rs | 2 +- src/math/frexp.rs | 2 +- src/math/frexpf.rs | 2 +- src/math/hypot.rs | 2 +- src/math/hypotf.rs | 2 +- src/math/ilogb.rs | 2 +- src/math/ilogbf.rs | 2 +- src/math/j0.rs | 2 +- src/math/j0f.rs | 2 +- src/math/j1.rs | 2 +- src/math/j1f.rs | 2 +- src/math/jn.rs | 2 +- src/math/jnf.rs | 2 +- src/math/ldexp.rs | 2 +- src/math/ldexpf.rs | 2 +- src/math/lgamma.rs | 2 +- src/math/lgamma_r.rs | 2 +- src/math/lgammaf.rs | 2 +- src/math/lgammaf_r.rs | 2 +- src/math/log.rs | 2 +- src/math/log10.rs | 2 +- src/math/log10f.rs | 2 +- src/math/log1p.rs | 2 +- src/math/log1pf.rs | 2 +- src/math/log2.rs | 2 +- src/math/log2f.rs | 2 +- src/math/logf.rs | 2 +- src/math/modf.rs | 2 +- src/math/modff.rs | 2 +- src/math/nextafter.rs | 2 +- src/math/nextafterf.rs | 2 +- src/math/pow.rs | 2 +- src/math/powf.rs | 2 +- src/math/remainder.rs | 2 +- src/math/remainderf.rs | 2 +- src/math/remquo.rs | 2 +- src/math/remquof.rs | 2 +- src/math/round.rs | 2 +- src/math/roundf.rs | 2 +- src/math/scalbn.rs | 2 +- src/math/scalbnf.rs | 2 +- src/math/sin.rs | 2 +- src/math/sincos.rs | 2 +- src/math/sincosf.rs | 2 +- src/math/sinf.rs | 2 +- src/math/sinh.rs | 2 +- src/math/sinhf.rs | 2 +- src/math/sqrt.rs | 2 +- src/math/sqrtf.rs | 2 +- src/math/tan.rs | 2 +- src/math/tanf.rs | 2 +- src/math/tanh.rs | 2 +- src/math/tanhf.rs | 2 +- src/math/tgamma.rs | 2 +- src/math/tgammaf.rs | 2 +- src/math/trunc.rs | 2 +- src/math/truncf.rs | 2 +- src/math/y0.rs | 2 +- src/math/y0f.rs | 2 +- src/math/y1.rs | 2 +- src/math/y1f.rs | 2 +- src/math/yn.rs | 2 +- src/math/ynf.rs | 2 +- 113 files changed, 113 insertions(+), 113 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 9f87698..c0743d5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/lib.rs * diff --git a/src/math/acos.rs b/src/math/acos.rs index de28c29..970f26f 100644 --- a/src/math/acos.rs +++ b/src/math/acos.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/acos.rs * diff --git a/src/math/acosf.rs b/src/math/acosf.rs index fcb6096..839b80c 100644 --- a/src/math/acosf.rs +++ b/src/math/acosf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/acosf.rs * diff --git a/src/math/acosh.rs b/src/math/acosh.rs index 10ce852..2911393 100644 --- a/src/math/acosh.rs +++ b/src/math/acosh.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/acosh.rs * diff --git a/src/math/acoshf.rs b/src/math/acoshf.rs index 43d6010..09296c5 100644 --- a/src/math/acoshf.rs +++ b/src/math/acoshf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/acoshf.rs * diff --git a/src/math/asin.rs b/src/math/asin.rs index 0eb812c..a8c35fc 100644 --- a/src/math/asin.rs +++ b/src/math/asin.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/asin.rs * diff --git a/src/math/asinf.rs b/src/math/asinf.rs index 6a56839..05ddf2c 100644 --- a/src/math/asinf.rs +++ b/src/math/asinf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/asinf.rs * diff --git a/src/math/asinh.rs b/src/math/asinh.rs index b0f021f..11a1a01 100644 --- a/src/math/asinh.rs +++ b/src/math/asinh.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/asinh.rs * diff --git a/src/math/asinhf.rs b/src/math/asinhf.rs index 6594212..77b9bc6 100644 --- a/src/math/asinhf.rs +++ b/src/math/asinhf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/asinhf.rs * diff --git a/src/math/atan.rs b/src/math/atan.rs index faf0f6e..8d23425 100644 --- a/src/math/atan.rs +++ b/src/math/atan.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/atan.rs * diff --git a/src/math/atan2.rs b/src/math/atan2.rs index e89589c..46241a0 100644 --- a/src/math/atan2.rs +++ b/src/math/atan2.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/atan2.rs * diff --git a/src/math/atan2f.rs b/src/math/atan2f.rs index d3fb1f4..ca2e899 100644 --- a/src/math/atan2f.rs +++ b/src/math/atan2f.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/atan2f.rs * diff --git a/src/math/atanf.rs b/src/math/atanf.rs index bc4a507..31a1980 100644 --- a/src/math/atanf.rs +++ b/src/math/atanf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/atanf.rs * diff --git a/src/math/atanh.rs b/src/math/atanh.rs index 06f9178..72a3ebf 100644 --- a/src/math/atanh.rs +++ b/src/math/atanh.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/atanh.rs * diff --git a/src/math/atanhf.rs b/src/math/atanhf.rs index d8cb2cb..2e81943 100644 --- a/src/math/atanhf.rs +++ b/src/math/atanhf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/atanhf.rs * diff --git a/src/math/cbrt.rs b/src/math/cbrt.rs index 11bf2de..bea7041 100644 --- a/src/math/cbrt.rs +++ b/src/math/cbrt.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/cbrt.rs * diff --git a/src/math/cbrtf.rs b/src/math/cbrtf.rs index bb1809a..fa7fd50 100644 --- a/src/math/cbrtf.rs +++ b/src/math/cbrtf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/cbrtf.rs * diff --git a/src/math/ceil.rs b/src/math/ceil.rs index 3a225b5..ac17022 100644 --- a/src/math/ceil.rs +++ b/src/math/ceil.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/ceil.rs * diff --git a/src/math/ceilf.rs b/src/math/ceilf.rs index d179a21..136dce5 100644 --- a/src/math/ceilf.rs +++ b/src/math/ceilf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/ceilf.rs * diff --git a/src/math/copysign.rs b/src/math/copysign.rs index 5e03bf7..43537db 100644 --- a/src/math/copysign.rs +++ b/src/math/copysign.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/copysign.rs * diff --git a/src/math/copysignf.rs b/src/math/copysignf.rs index 84be7bf..bc83d69 100644 --- a/src/math/copysignf.rs +++ b/src/math/copysignf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/copysignf.rs * diff --git a/src/math/cos.rs b/src/math/cos.rs index 75f9d95..fac7178 100644 --- a/src/math/cos.rs +++ b/src/math/cos.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/cos.rs * diff --git a/src/math/cosf.rs b/src/math/cosf.rs index 5707f27..0e097cf 100644 --- a/src/math/cosf.rs +++ b/src/math/cosf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/cosf.rs * diff --git a/src/math/cosh.rs b/src/math/cosh.rs index 7dca943..17a1669 100644 --- a/src/math/cosh.rs +++ b/src/math/cosh.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/cosh.rs * diff --git a/src/math/coshf.rs b/src/math/coshf.rs index e0b65cf..51aa6ee 100644 --- a/src/math/coshf.rs +++ b/src/math/coshf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/coshf.rs * diff --git a/src/math/erf.rs b/src/math/erf.rs index 141eb96..df349b4 100644 --- a/src/math/erf.rs +++ b/src/math/erf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/erf.rs * diff --git a/src/math/erfc.rs b/src/math/erfc.rs index 3454b43..0a86d42 100644 --- a/src/math/erfc.rs +++ b/src/math/erfc.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/erfc.rs * diff --git a/src/math/erfcf.rs b/src/math/erfcf.rs index 63d6382..46097c8 100644 --- a/src/math/erfcf.rs +++ b/src/math/erfcf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/erfcf.rs * diff --git a/src/math/erff.rs b/src/math/erff.rs index 43bfca7..4fb825d 100644 --- a/src/math/erff.rs +++ b/src/math/erff.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/erff.rs * diff --git a/src/math/exp.rs b/src/math/exp.rs index 39b4176..726e062 100644 --- a/src/math/exp.rs +++ b/src/math/exp.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/exp.rs * diff --git a/src/math/exp10.rs b/src/math/exp10.rs index acbf6be..9cce317 100644 --- a/src/math/exp10.rs +++ b/src/math/exp10.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/exp10.rs * diff --git a/src/math/exp10f.rs b/src/math/exp10f.rs index 7730325..2dd3b6d 100644 --- a/src/math/exp10f.rs +++ b/src/math/exp10f.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/exp10f.rs * diff --git a/src/math/exp2.rs b/src/math/exp2.rs index 43dfa58..0bde169 100644 --- a/src/math/exp2.rs +++ b/src/math/exp2.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/exp2.rs * diff --git a/src/math/exp2f.rs b/src/math/exp2f.rs index 2bb8077..c253e78 100644 --- a/src/math/exp2f.rs +++ b/src/math/exp2f.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/exp2f.rs * diff --git a/src/math/expf.rs b/src/math/expf.rs index 29e4134..d4ca637 100644 --- a/src/math/expf.rs +++ b/src/math/expf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/expf.rs * diff --git a/src/math/expm1.rs b/src/math/expm1.rs index e32620b..e27ef58 100644 --- a/src/math/expm1.rs +++ b/src/math/expm1.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/expm1.rs * diff --git a/src/math/expm1f.rs b/src/math/expm1f.rs index 1e088ce..35bf680 100644 --- a/src/math/expm1f.rs +++ b/src/math/expm1f.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/expm1f.rs * diff --git a/src/math/fabs.rs b/src/math/fabs.rs index 2c7ced3..23c031b 100644 --- a/src/math/fabs.rs +++ b/src/math/fabs.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/fabs.rs * diff --git a/src/math/fabsf.rs b/src/math/fabsf.rs index 84b8e5b..6dd2353 100644 --- a/src/math/fabsf.rs +++ b/src/math/fabsf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/fabsf.rs * diff --git a/src/math/fdim.rs b/src/math/fdim.rs index 53d3479..ea903f4 100644 --- a/src/math/fdim.rs +++ b/src/math/fdim.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/fdim.rs * diff --git a/src/math/fdimf.rs b/src/math/fdimf.rs index b4f5abd..3b903bc 100644 --- a/src/math/fdimf.rs +++ b/src/math/fdimf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/fdimf.rs * diff --git a/src/math/floor.rs b/src/math/floor.rs index 0d75994..6366981 100644 --- a/src/math/floor.rs +++ b/src/math/floor.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/floor.rs * diff --git a/src/math/floorf.rs b/src/math/floorf.rs index 326f0d9..8fa1cad 100644 --- a/src/math/floorf.rs +++ b/src/math/floorf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/floorf.rs * diff --git a/src/math/fma.rs b/src/math/fma.rs index ba27c9d..d53a367 100644 --- a/src/math/fma.rs +++ b/src/math/fma.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/fma.rs * diff --git a/src/math/fmaf.rs b/src/math/fmaf.rs index 72eb3ce..0b7614d 100644 --- a/src/math/fmaf.rs +++ b/src/math/fmaf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/fmaf.rs * diff --git a/src/math/fmax.rs b/src/math/fmax.rs index dbb4125..b5c9474 100644 --- a/src/math/fmax.rs +++ b/src/math/fmax.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/fmax.rs * diff --git a/src/math/fmaxf.rs b/src/math/fmaxf.rs index 674b3c8..9a188ef 100644 --- a/src/math/fmaxf.rs +++ b/src/math/fmaxf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/fmaxf.rs * diff --git a/src/math/fmin.rs b/src/math/fmin.rs index 63266f0..0efe014 100644 --- a/src/math/fmin.rs +++ b/src/math/fmin.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/fmin.rs * diff --git a/src/math/fminf.rs b/src/math/fminf.rs index b8fa05f..9ab4a59 100644 --- a/src/math/fminf.rs +++ b/src/math/fminf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/fminf.rs * diff --git a/src/math/fmod.rs b/src/math/fmod.rs index bc709e8..e56cc86 100644 --- a/src/math/fmod.rs +++ b/src/math/fmod.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/fmod.rs * diff --git a/src/math/fmodf.rs b/src/math/fmodf.rs index b54d934..100d7d6 100644 --- a/src/math/fmodf.rs +++ b/src/math/fmodf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/fmodf.rs * diff --git a/src/math/frexp.rs b/src/math/frexp.rs index 74fb971..71d3e66 100644 --- a/src/math/frexp.rs +++ b/src/math/frexp.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/frexp.rs * diff --git a/src/math/frexpf.rs b/src/math/frexpf.rs index dad0c7c..89d11ed 100644 --- a/src/math/frexpf.rs +++ b/src/math/frexpf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/frexpf.rs * diff --git a/src/math/hypot.rs b/src/math/hypot.rs index e1c4e28..2757d09 100644 --- a/src/math/hypot.rs +++ b/src/math/hypot.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/hypot.rs * diff --git a/src/math/hypotf.rs b/src/math/hypotf.rs index 0d9b8e5..86ecdb7 100644 --- a/src/math/hypotf.rs +++ b/src/math/hypotf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/hypotf.rs * diff --git a/src/math/ilogb.rs b/src/math/ilogb.rs index 6787938..ed7911d 100644 --- a/src/math/ilogb.rs +++ b/src/math/ilogb.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/ilogb.rs * diff --git a/src/math/ilogbf.rs b/src/math/ilogbf.rs index aac9040..c2896c0 100644 --- a/src/math/ilogbf.rs +++ b/src/math/ilogbf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/ilogbf.rs * diff --git a/src/math/j0.rs b/src/math/j0.rs index c14ad44..66e9eca 100644 --- a/src/math/j0.rs +++ b/src/math/j0.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/j0.rs * diff --git a/src/math/j0f.rs b/src/math/j0f.rs index 842ad37..16d68fb 100644 --- a/src/math/j0f.rs +++ b/src/math/j0f.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/j0f.rs * diff --git a/src/math/j1.rs b/src/math/j1.rs index 93a76ee..d2b0c18 100644 --- a/src/math/j1.rs +++ b/src/math/j1.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/j1.rs * diff --git a/src/math/j1f.rs b/src/math/j1f.rs index 3fed5c8..9c1c110 100644 --- a/src/math/j1f.rs +++ b/src/math/j1f.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/j1f.rs * diff --git a/src/math/jn.rs b/src/math/jn.rs index a71b242..2d05499 100644 --- a/src/math/jn.rs +++ b/src/math/jn.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/jn.rs * diff --git a/src/math/jnf.rs b/src/math/jnf.rs index c68ff64..e5b9eac 100644 --- a/src/math/jnf.rs +++ b/src/math/jnf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/jnf.rs * diff --git a/src/math/ldexp.rs b/src/math/ldexp.rs index 5ed4f99..522043a 100644 --- a/src/math/ldexp.rs +++ b/src/math/ldexp.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/ldexp.rs * diff --git a/src/math/ldexpf.rs b/src/math/ldexpf.rs index afb7559..5bd478c 100644 --- a/src/math/ldexpf.rs +++ b/src/math/ldexpf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/ldexpf.rs * diff --git a/src/math/lgamma.rs b/src/math/lgamma.rs index 721ba15..cf9ecbc 100644 --- a/src/math/lgamma.rs +++ b/src/math/lgamma.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/lgamma.rs * diff --git a/src/math/lgamma_r.rs b/src/math/lgamma_r.rs index c5cf8c4..0a038fd 100644 --- a/src/math/lgamma_r.rs +++ b/src/math/lgamma_r.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/lgamma_r.rs * diff --git a/src/math/lgammaf.rs b/src/math/lgammaf.rs index e6d9388..3c08db2 100644 --- a/src/math/lgammaf.rs +++ b/src/math/lgammaf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/lgammaf.rs * diff --git a/src/math/lgammaf_r.rs b/src/math/lgammaf_r.rs index e412d9a..3b9d9e1 100644 --- a/src/math/lgammaf_r.rs +++ b/src/math/lgammaf_r.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/lgammaf_r.rs * diff --git a/src/math/log.rs b/src/math/log.rs index 6d4eed0..77e58e0 100644 --- a/src/math/log.rs +++ b/src/math/log.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/log.rs * diff --git a/src/math/log10.rs b/src/math/log10.rs index 288e6fa..d90c403 100644 --- a/src/math/log10.rs +++ b/src/math/log10.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/log10.rs * diff --git a/src/math/log10f.rs b/src/math/log10f.rs index 1612541..7562921 100644 --- a/src/math/log10f.rs +++ b/src/math/log10f.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/log10f.rs * diff --git a/src/math/log1p.rs b/src/math/log1p.rs index a2a6b2d..249e97e 100644 --- a/src/math/log1p.rs +++ b/src/math/log1p.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/log1p.rs * diff --git a/src/math/log1pf.rs b/src/math/log1pf.rs index 26e3429..e79d189 100644 --- a/src/math/log1pf.rs +++ b/src/math/log1pf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/log1pf.rs * diff --git a/src/math/log2.rs b/src/math/log2.rs index 7657444..ee91da6 100644 --- a/src/math/log2.rs +++ b/src/math/log2.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/log2.rs * diff --git a/src/math/log2f.rs b/src/math/log2f.rs index 107783e..6ad5add 100644 --- a/src/math/log2f.rs +++ b/src/math/log2f.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/log2f.rs * diff --git a/src/math/logf.rs b/src/math/logf.rs index 936854c..5f400ab 100644 --- a/src/math/logf.rs +++ b/src/math/logf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/logf.rs * diff --git a/src/math/modf.rs b/src/math/modf.rs index 3c18459..5914a9a 100644 --- a/src/math/modf.rs +++ b/src/math/modf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/modf.rs * diff --git a/src/math/modff.rs b/src/math/modff.rs index d33c837..98ed9d3 100644 --- a/src/math/modff.rs +++ b/src/math/modff.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/modff.rs * diff --git a/src/math/nextafter.rs b/src/math/nextafter.rs index 0a3ecc6..2f7c240 100644 --- a/src/math/nextafter.rs +++ b/src/math/nextafter.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/nextafter.rs * diff --git a/src/math/nextafterf.rs b/src/math/nextafterf.rs index 85f7829..1aad104 100644 --- a/src/math/nextafterf.rs +++ b/src/math/nextafterf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/nextafterf.rs * diff --git a/src/math/pow.rs b/src/math/pow.rs index 4abf0fd..0ad3e2f 100644 --- a/src/math/pow.rs +++ b/src/math/pow.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/pow.rs * diff --git a/src/math/powf.rs b/src/math/powf.rs index a7f9f27..cf730dd 100644 --- a/src/math/powf.rs +++ b/src/math/powf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/powf.rs * diff --git a/src/math/remainder.rs b/src/math/remainder.rs index 148e167..5e43120 100644 --- a/src/math/remainder.rs +++ b/src/math/remainder.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/remainder.rs * diff --git a/src/math/remainderf.rs b/src/math/remainderf.rs index b65986d..88c77b6 100644 --- a/src/math/remainderf.rs +++ b/src/math/remainderf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/remainderf.rs * diff --git a/src/math/remquo.rs b/src/math/remquo.rs index 79e0b24..364f179 100644 --- a/src/math/remquo.rs +++ b/src/math/remquo.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/remquo.rs * diff --git a/src/math/remquof.rs b/src/math/remquof.rs index d88232c..cc66b8d 100644 --- a/src/math/remquof.rs +++ b/src/math/remquof.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/remquof.rs * diff --git a/src/math/round.rs b/src/math/round.rs index ef0370d..68a727c 100644 --- a/src/math/round.rs +++ b/src/math/round.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/round.rs * diff --git a/src/math/roundf.rs b/src/math/roundf.rs index 306b150..98b0382 100644 --- a/src/math/roundf.rs +++ b/src/math/roundf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/roundf.rs * diff --git a/src/math/scalbn.rs b/src/math/scalbn.rs index a52efb4..59430b0 100644 --- a/src/math/scalbn.rs +++ b/src/math/scalbn.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/scalbn.rs * diff --git a/src/math/scalbnf.rs b/src/math/scalbnf.rs index 105a0eb..9625bc0 100644 --- a/src/math/scalbnf.rs +++ b/src/math/scalbnf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/scalbnf.rs * diff --git a/src/math/sin.rs b/src/math/sin.rs index 672b5fa..bf7f7a6 100644 --- a/src/math/sin.rs +++ b/src/math/sin.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/sin.rs * diff --git a/src/math/sincos.rs b/src/math/sincos.rs index 337e386..b39f4e1 100644 --- a/src/math/sincos.rs +++ b/src/math/sincos.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/sincos.rs * diff --git a/src/math/sincosf.rs b/src/math/sincosf.rs index cbe3061..14975ce 100644 --- a/src/math/sincosf.rs +++ b/src/math/sincosf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/sincosf.rs * diff --git a/src/math/sinf.rs b/src/math/sinf.rs index eb109be..6b88158 100644 --- a/src/math/sinf.rs +++ b/src/math/sinf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/sinf.rs * diff --git a/src/math/sinh.rs b/src/math/sinh.rs index 736f620..6840e28 100644 --- a/src/math/sinh.rs +++ b/src/math/sinh.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/sinh.rs * diff --git a/src/math/sinhf.rs b/src/math/sinhf.rs index 19ebcc9..23094d4 100644 --- a/src/math/sinhf.rs +++ b/src/math/sinhf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/sinhf.rs * diff --git a/src/math/sqrt.rs b/src/math/sqrt.rs index 922fa7a..abda446 100644 --- a/src/math/sqrt.rs +++ b/src/math/sqrt.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/sqrt.rs * diff --git a/src/math/sqrtf.rs b/src/math/sqrtf.rs index de6b163..ce7e4d3 100644 --- a/src/math/sqrtf.rs +++ b/src/math/sqrtf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/sqrtf.rs * diff --git a/src/math/tan.rs b/src/math/tan.rs index a8cfb7b..e140326 100644 --- a/src/math/tan.rs +++ b/src/math/tan.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/tan.rs * diff --git a/src/math/tanf.rs b/src/math/tanf.rs index 3c1a837..4bd1ef2 100644 --- a/src/math/tanf.rs +++ b/src/math/tanf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/tanf.rs * diff --git a/src/math/tanh.rs b/src/math/tanh.rs index 4f3a06e..dc396c0 100644 --- a/src/math/tanh.rs +++ b/src/math/tanh.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/tanh.rs * diff --git a/src/math/tanhf.rs b/src/math/tanhf.rs index 5dd49a2..d072ed6 100644 --- a/src/math/tanhf.rs +++ b/src/math/tanhf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/tanhf.rs * diff --git a/src/math/tgamma.rs b/src/math/tgamma.rs index 915f3b9..673c2d7 100644 --- a/src/math/tgamma.rs +++ b/src/math/tgamma.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/tgamma.rs * diff --git a/src/math/tgammaf.rs b/src/math/tgammaf.rs index 3c7a9d5..beaaf57 100644 --- a/src/math/tgammaf.rs +++ b/src/math/tgammaf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/tgammaf.rs * diff --git a/src/math/trunc.rs b/src/math/trunc.rs index 6016451..89072b1 100644 --- a/src/math/trunc.rs +++ b/src/math/trunc.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/trunc.rs * diff --git a/src/math/truncf.rs b/src/math/truncf.rs index d3e87d6..43f4ecd 100644 --- a/src/math/truncf.rs +++ b/src/math/truncf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/truncf.rs * diff --git a/src/math/y0.rs b/src/math/y0.rs index 8295a33..476a282 100644 --- a/src/math/y0.rs +++ b/src/math/y0.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/y0.rs * diff --git a/src/math/y0f.rs b/src/math/y0f.rs index 1bf6ce3..2b7218c 100644 --- a/src/math/y0f.rs +++ b/src/math/y0f.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/y0f.rs * diff --git a/src/math/y1.rs b/src/math/y1.rs index f8f12e4..604aa94 100644 --- a/src/math/y1.rs +++ b/src/math/y1.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/y1.rs * diff --git a/src/math/y1f.rs b/src/math/y1f.rs index 5faded5..b3168f3 100644 --- a/src/math/y1f.rs +++ b/src/math/y1f.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/y1f.rs * diff --git a/src/math/yn.rs b/src/math/yn.rs index 31dac6f..206ce4d 100644 --- a/src/math/yn.rs +++ b/src/math/yn.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/yn.rs * diff --git a/src/math/ynf.rs b/src/math/ynf.rs index 0345726..f35de16 100644 --- a/src/math/ynf.rs +++ b/src/math/ynf.rs @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT /* * File: src/math/ynf.rs *