diff --git a/lib/node_modules/@stdlib/math/base/special/roundb/examples/c/example.c b/lib/node_modules/@stdlib/math/base/special/roundb/examples/c/example.c index fae86c9c787..c2b01cfe263 100644 --- a/lib/node_modules/@stdlib/math/base/special/roundb/examples/c/example.c +++ b/lib/node_modules/@stdlib/math/base/special/roundb/examples/c/example.c @@ -21,14 +21,14 @@ #include int main( void ) { - const double x[] = { -5.0, -3.89, -2.78, -1.67, -0.56, 0.56, 1.67, 2.78, 3.89, 5.0 }; + const double x[] = { -5.0, -3.89, -2.78, -1.67, -0.56, 0.56, 1.67, 2.78, 3.89, 5.0 }; const int32_t n[] = { -4, -3, -2, -1, 0, 1, 2, 3, 4, 5 }; const int32_t b[] = { 20, 19, 18, 17, 16, 15, 14, 13, 12, 11 }; - double v; - int i; - for ( i = 0; i < 10; i++ ) { - v = stdlib_base_roundb( x[ i ], n[ i ], b[ i ] ); - printf( "roundb(%lf, %d, %d) = %lf\n", x[ i ], n[ i ], b[ i ], v ); - } + double v; + int i; + for ( i = 0; i < 10; i++ ) { + v = stdlib_base_roundb( x[ i ], n[ i ], b[ i ] ); + printf( "roundb(%lf, %d, %d) = %lf\n", x[ i ], n[ i ], b[ i ], v ); + } }