diff options
Diffstat (limited to 'pl/math/math_err.c')
| -rw-r--r-- | pl/math/math_err.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pl/math/math_err.c b/pl/math/math_err.c index d246a89982de..74db54a5b2cd 100644 --- a/pl/math/math_err.c +++ b/pl/math/math_err.c @@ -8,7 +8,7 @@ #include "math_config.h" #if WANT_ERRNO -#include <errno.h> +# include <errno.h> /* NOINLINE reduces code size and avoids making math functions non-leaf when the error handling is inlined. */ NOINLINE static double @@ -18,7 +18,7 @@ with_errno (double y, int e) return y; } #else -#define with_errno(x, e) (x) +# define with_errno(x, e) (x) #endif /* NOINLINE reduces code size. */ |
