mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 04:33:12 +00:00
[LIBM] Fix build
This commit is contained in:
parent
4afb647c78
commit
9e8ed3f817
35 changed files with 139 additions and 112 deletions
|
@ -41,11 +41,12 @@ THE SOFTWARE.
|
|||
|
||||
#include "libm_errno.h"
|
||||
|
||||
#ifdef _MSC_VER
|
||||
// Disable "C4163: not available as intrinsic function" warning that older
|
||||
// compilers may issue here.
|
||||
#pragma warning(disable:4163)
|
||||
#pragma function(sinhf)
|
||||
|
||||
#endif
|
||||
|
||||
float sinhf(float fx)
|
||||
{
|
||||
|
@ -153,7 +154,7 @@ float sinhf(float fx)
|
|||
7.93006726156715250000e+14, /* 0x430689e221bc8d5a */
|
||||
2.15561577355759750000e+15}; /* 0x431ea215a1d20d76 */
|
||||
|
||||
unsigned long ux, aux, xneg;
|
||||
unsigned long long ux, aux, xneg;
|
||||
double x = fx, y, z, z1, z2;
|
||||
int m;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue