From 195e1c177b0de15915190471d4c77a8c5e00c935 Mon Sep 17 00:00:00 2001 From: Intel A80486DX2-66 Date: Sat, 9 Mar 2024 16:49:33 +0300 Subject: [PATCH] opt_int_div.h: fix macro `OPT_INT_DIV_ROUNDING` --- c-programming/math/opt_int_div.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c-programming/math/opt_int_div.h b/c-programming/math/opt_int_div.h index 12d5157..ca23cf0 100644 --- a/c-programming/math/opt_int_div.h +++ b/c-programming/math/opt_int_div.h @@ -16,7 +16,7 @@ // constants #define OPT_INT_DIV_ROUNDING \ /* 10^OPT_INT_DIV_TEST_PRECISION */ \ - powl(10.l, (long double) OPT_INT_DIV_TEST_PRECISION) \ + powl(10.l, (long double) OPT_INT_DIV_TEST_PRECISION) // helper functions #define INT_BIN_DIV(a, b) ((a) >> (uintmax_t) log2l((b)))