index
:
rustc
debian
progress-linux
upstream
debian 12 backports: mozilla
Progress Linux
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
vendor
/
libm
/
src
/
math
/
tgammaf.rs
blob: a8f161f0c1c951f7412dd88c1423cea55766d1da (
plain
)
1
2
3
4
5
use
super
::
tgamma
;
pub
fn
tgammaf
(
x
:
f32
)
->
f32
{
tgamma
(
x
as
f64
)
as
f32
}