mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 19:21:38 +00:00
[LIBM] Fix build
This commit is contained in:
parent
4afb647c78
commit
9e8ed3f817
35 changed files with 139 additions and 112 deletions
|
@ -39,8 +39,10 @@ THE SOFTWARE.
|
|||
|
||||
#include "libm_errno.h"
|
||||
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma function(tanh)
|
||||
#endif
|
||||
|
||||
double tanh(double x)
|
||||
{
|
||||
/*
|
||||
|
@ -57,7 +59,7 @@ double tanh(double x)
|
|||
log2_by_32_tail = 5.68948749532545630390e-11, /* 0x3dcf473de6af278e */
|
||||
large_threshold = 20.0; /* 0x4034000000000000 */
|
||||
|
||||
unsigned long ux, aux, xneg;
|
||||
unsigned long long ux, aux, xneg;
|
||||
double y, z, p, z1, z2;
|
||||
int m;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue