msvcrt: Export fabsf on ARM and x86_64.
This commit is contained in:
parent
4f27b78fb4
commit
8fab2422a8
|
@ -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
|
||||
|
|
|
@ -288,6 +288,14 @@ float CDECL MSVCRT_ceilf( float x )
|
|||
return ceilf(x);
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* fabsf (MSVCRT.@)
|
||||
*/
|
||||
float CDECL MSVCRT_fabsf( float x )
|
||||
{
|
||||
return fabsf(x);
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* floorf (MSVCRT.@)
|
||||
*/
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue