mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-30 17:05:33 -04:00
Fix missing __fabs header include
This commit is contained in:
+2
-1
@@ -40,6 +40,7 @@
|
||||
*/
|
||||
|
||||
#include "fdlibm.h"
|
||||
#include "math.h"
|
||||
|
||||
#ifdef __STDC__
|
||||
static const double
|
||||
@@ -140,4 +141,4 @@ double __ieee754_atan2(y, x) double y, x;
|
||||
default: /* case 3 */
|
||||
return (z - pi_lo) - pi; /* atan(-,-) */
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+2
-1
@@ -33,6 +33,7 @@
|
||||
*/
|
||||
|
||||
#include "fdlibm.h"
|
||||
#include "math.h"
|
||||
|
||||
#ifdef __STDC__
|
||||
static const double atanhi[] = {
|
||||
@@ -140,4 +141,4 @@ double atan(x) double x;
|
||||
z = atanhi[id] - ((x * (s1 + s2) - atanlo[id]) - x);
|
||||
return (hx < 0) ? -z : z;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user