mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 22:23:01 +00:00
[LIBM] Fix build
This commit is contained in:
parent
4afb647c78
commit
9e8ed3f817
35 changed files with 139 additions and 112 deletions
|
@ -37,7 +37,9 @@ THE SOFTWARE.
|
|||
|
||||
#include "libm_errno.h"
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma function(atan)
|
||||
#endif
|
||||
|
||||
double FN_PROTOTYPE(atan)(double x)
|
||||
{
|
||||
|
@ -49,7 +51,7 @@ double FN_PROTOTYPE(atan)(double x)
|
|||
|
||||
/* Find properties of argument x. */
|
||||
|
||||
unsigned long ux, aux, xneg;
|
||||
unsigned long long ux, aux, xneg;
|
||||
GET_BITS_DP64(x, ux);
|
||||
aux = ux & ~SIGNBIT_DP64;
|
||||
xneg = (ux != aux);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue