Chromium Code Reviews| Index: fusl/src/math/ilogbl.c |
| diff --git a/fusl/src/math/ilogbl.c b/fusl/src/math/ilogbl.c |
| index 7b1a9cf8d007ff16c1d6fe072916a5a8a226e3e3..467929c32ffc566a7ee90618ab68e0429db30b94 100644 |
| --- a/fusl/src/math/ilogbl.c |
| +++ b/fusl/src/math/ilogbl.c |
| @@ -9,7 +9,7 @@ int ilogbl(long double x) |
| #elif LDBL_MANT_DIG == 64 && LDBL_MAX_EXP == 16384 |
| int ilogbl(long double x) |
| { |
| - #pragma STDC FENV_ACCESS ON |
| + PRAGMA_STDC_FENV_ACCESS_ON |
| union ldshape u = {x}; |
| uint64_t m = u.i.m; |
| int e = u.i.se & 0x7fff; |