sqrtl: fix invalid use of a non-constant-expression as static initializer
commit0e330722c353e71ec9d1518d77278c09f39a1c55
authorRich Felker <dalias@aerifal.cx>
Mon, 29 Jan 2024 14:05:32 +0000 (29 09:05 -0500)
committerRich Felker <dalias@aerifal.cx>
Sun, 4 Feb 2024 00:50:58 +0000 (3 19:50 -0500)
treeb429913d802711a81c7db0af55769148110ac63a
parentbd3138b74a06dd764508f399d1b58cb9d6c35c1f
sqrtl: fix invalid use of a non-constant-expression as static initializer

having these constants be static was unnecessary, so just remove the
static.

this error should have been caught by compilers, but recent versions
of both gcc and clang accept these as "other forms of constant
expressions" which the C standard allows.
src/math/sqrtl.c