diff options
| author | Kacper <kacper@mail.openlinux.dev> | 2025-12-09 21:17:12 +0100 |
|---|---|---|
| committer | Kacper <kacper@mail.openlinux.dev> | 2025-12-09 21:17:12 +0100 |
| commit | b5cd18739a64c8d923a55b61c89ae3900faafd84 (patch) | |
| tree | d192f7b25257ae9a8a4760c68f5314dcbc0d9b91 /lib/libm/lgammaf_r.c | |
| parent | 119aed5bc787ccbf23d2f151759ec1f3a80977e1 (diff) | |
Fix include paths and formatting inconsistencies
Diffstat (limited to 'lib/libm/lgammaf_r.c')
| -rw-r--r-- | lib/libm/lgammaf_r.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/libm/lgammaf_r.c b/lib/libm/lgammaf_r.c index 4b63298e..b1a02fb8 100644 --- a/lib/libm/lgammaf_r.c +++ b/lib/libm/lgammaf_r.c @@ -187,9 +187,10 @@ float __lgammaf_r(float x, int *signgamp) z = y * y; w = z * y; p1 = t0 + - w * (t3 + w * (t6 + w * (t9 + w * t12))); /* parallel - comp - */ + w * (t3 + + w * (t6 + w * (t9 + w * t12))); /* parallel + comp + */ p2 = t1 + w * (t4 + w * (t7 + w * (t10 + w * t13))); p3 = t2 + w * (t5 + w * (t8 + w * (t11 + w * t14))); p = z * p1 - (tt - w * (p2 + y * p3)); |
