mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 06:15:52 +00:00
[LIBM] Fix build
This commit is contained in:
parent
4afb647c78
commit
9e8ed3f817
35 changed files with 139 additions and 112 deletions
|
@ -45,7 +45,9 @@ THE SOFTWARE.
|
|||
|
||||
#include "libm_errno.h"
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma function(atan2)
|
||||
#endif
|
||||
|
||||
double FN_PROTOTYPE(atan2)(double y, double x)
|
||||
{
|
||||
|
@ -558,7 +560,7 @@ double FN_PROTOTYPE(atan2)(double y, double x)
|
|||
|
||||
/* Find properties of arguments x and y. */
|
||||
|
||||
unsigned long ux, ui, aux, xneg, uy, auy, yneg;
|
||||
unsigned long long ux, ui, aux, xneg, uy, auy, yneg;
|
||||
|
||||
GET_BITS_DP64(x, ux);
|
||||
GET_BITS_DP64(y, uy);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue