Sign in
mingw
/
mingw-w64
/
518dd33c326f65684e8e938262b2a9ca94804cfb
/
.
/
mingw-w64-crt
/
math
/
powf.c
blob: 9bcb569759a58c5c0a31e57053c5e83bbaeca2a6 [
file
] [
log
] [
blame
]
#include
<math.h>
float
powf
(
float
x
,
float
y
)
{
return
(
float
)
pow
(
x
,
y
);}