Merge pull request rust-lang/libm#289 from Amjad50/remove_unneeded_extern_core

Remove unneeded `extern core` in `tgamma`
This commit is contained in:
Amanieu d'Antras 2024-02-21 01:09:55 +00:00 committed by GitHub
commit f778833b89

View file

@ -22,7 +22,6 @@ Gamma(x)*Gamma(-x) = -pi/(x sin(pi x))
most ideas and constants are from boost and python
*/
extern crate core;
use super::{exp, floor, k_cos, k_sin, pow};
const PI: f64 = 3.141592653589793238462643383279502884;