aboutsummaryrefslogtreecommitdiff
path: root/pl/math/math_errf.c
diff options
context:
space:
mode:
authorAndrew Turner <andrew@FreeBSD.org>2024-02-20 09:02:15 +0000
committerAndrew Turner <andrew@FreeBSD.org>2024-02-20 09:02:15 +0000
commitedc5c0de794f521eb620d2b6cbaee2434442a8f3 (patch)
tree64dfc547c0b6398e9cf94bd8175b21db8a74c814 /pl/math/math_errf.c
parent29866ecb89620f1c798b7f5ff6710255f13aa52e (diff)
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. */