aboutsummaryrefslogtreecommitdiff
path: root/pl/math/math_errf.c
diff options
context:
space:
mode:
Diffstat (limited to 'pl/math/math_errf.c')
-rw-r--r--pl/math/math_errf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pl/math/math_errf.c b/pl/math/math_errf.c
index 96271ff18bc1..2b8c6bd25753 100644
--- a/pl/math/math_errf.c
+++ b/pl/math/math_errf.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 float
@@ -18,7 +18,7 @@ with_errnof (float y, int e)
return y;
}
#else
-#define with_errnof(x, e) (x)
+# define with_errnof(x, e) (x)
#endif
/* NOINLINE reduces code size. */