Commit 8fab2422 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

msvcrt: Export fabsf on ARM and x86_64.

parent 4f27b78f
......@@ -2011,7 +2011,7 @@
@ cdecl exp(double) msvcrt.exp
@ cdecl -arch=arm,x86_64 expf(float) msvcrt.expf
@ cdecl fabs(double) msvcrt.fabs
@ stub -arch=arm fabsf
@ cdecl -arch=arm,x86_64 fabsf(float) msvcrt.fabsf
@ cdecl fclose(ptr) msvcrt.fclose
@ cdecl feof(ptr) msvcrt.feof
@ cdecl ferror(ptr) msvcrt.ferror
......
......@@ -289,6 +289,14 @@ float CDECL MSVCRT_ceilf( float x )
}
/*********************************************************************
* fabsf (MSVCRT.@)
*/
float CDECL MSVCRT_fabsf( float x )
{
return fabsf(x);
}
/*********************************************************************
* floorf (MSVCRT.@)
*/
float CDECL MSVCRT_floorf( float x )
......
......@@ -1276,6 +1276,7 @@
@ cdecl exp(double) MSVCRT_exp
@ cdecl -arch=arm,x86_64 expf(float) MSVCRT_expf
@ cdecl fabs(double) MSVCRT_fabs
@ cdecl -arch=arm,x86_64 fabsf(float) MSVCRT_fabsf
@ cdecl fclose(ptr) MSVCRT_fclose
@ cdecl feof(ptr) MSVCRT_feof
@ cdecl ferror(ptr) MSVCRT_ferror
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment