From 4555036a24cdb0e62f4ab0dd189b3b240eeb2386 Mon Sep 17 00:00:00 2001 From: Ujjwal Verma Date: Sun, 5 Jul 2026 11:14:57 +0530 Subject: [PATCH] chore: fix C lint errors (issue #13275) --- .../@stdlib/number/float64/base/signbit/examples/c/example.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/number/float64/base/signbit/examples/c/example.c b/lib/node_modules/@stdlib/number/float64/base/signbit/examples/c/example.c index 457069430682..984064b006cc 100644 --- a/lib/node_modules/@stdlib/number/float64/base/signbit/examples/c/example.c +++ b/lib/node_modules/@stdlib/number/float64/base/signbit/examples/c/example.c @@ -22,7 +22,7 @@ #include int main( void ) { - double x[] = { 3.14, -3.14, 0.0, -0.0, 4.0, 1.0, -1.0, 1.0e308, -1.0e308 }; + const double x[] = { 3.14, -3.14, 0.0, -0.0, 4.0, 1.0, -1.0, 1.0e308, -1.0e308 }; int8_t out; int i;