| Index: fusl/src/math/fmaf.c
|
| diff --git a/fusl/src/math/fmaf.c b/fusl/src/math/fmaf.c
|
| index aa57feb69567c67a79aae02fc7ea18e07d22fd12..4ebe855204d649f76be1445ad2e27f7e97cd8e5b 100644
|
| --- a/fusl/src/math/fmaf.c
|
| +++ b/fusl/src/math/fmaf.c
|
| @@ -28,6 +28,7 @@
|
| #include <fenv.h>
|
| #include <math.h>
|
| #include <stdint.h>
|
| +#include "libm.h"
|
|
|
| /*
|
| * Fused multiply-add: Compute x * y + z with a single rounding error.
|
| @@ -38,7 +39,7 @@
|
| */
|
| float fmaf(float x, float y, float z)
|
| {
|
| - #pragma STDC FENV_ACCESS ON
|
| + PRAGMA_STDC_FENV_ACCESS_ON
|
| double xy, result;
|
| union {double f; uint64_t i;} u;
|
| int e;
|
|
|