Sign in
third-party-mirror
/
mingw-w64
/
518dd33c326f65684e8e938262b2a9ca94804cfb
/
.
/
mingw-w64-crt
/
math
/
expf.c
blob: 99684a077d4a08182faff76616d88658bac08b73 [
file
] [
log
] [
blame
]
#include
<math.h>
float
expf
(
float
x
)
{
return
(
float
)
exp
(
x
);}