Sign in
android
/
platform
/
external
/
rust
/
crates
/
libm
/
refs/heads/android15-tests-dev
/
.
/
src
/
math
/
ldexpf.rs
blob: 95b27fc49d28ea954b8e2ca9e64af5ad1b2275e7 [
file
] [
log
] [
blame
] [
edit
]
#[
cfg_attr
(
all
(
test
,
assert_no_panic
),
no_panic
::
no_panic
)]
pub
fn
ldexpf
(
x
:
f32
,
n
:
i32
)
->
f32
{
super
::
scalbnf
(
x
,
n
)
}