diff --git a/lib/node_modules/@stdlib/blas/base/ccopy/benchmark/c/benchmark.length.c b/lib/node_modules/@stdlib/blas/base/ccopy/benchmark/c/benchmark.length.c index 7f48f9d47e6..f807dca57a1 100644 --- a/lib/node_modules/@stdlib/blas/base/ccopy/benchmark/c/benchmark.length.c +++ b/lib/node_modules/@stdlib/blas/base/ccopy/benchmark/c/benchmark.length.c @@ -35,7 +35,7 @@ /** * Prints the TAP version. */ -void print_version() { +void print_version( void ) { printf( "TAP version 13\n" ); } @@ -74,7 +74,7 @@ void print_results( int iterations, double elapsed ) { * * @return clock time */ -double tic() { +double tic( void ) { struct timeval now; gettimeofday( &now, NULL ); return (double)now.tv_sec + (double)now.tv_usec/1.0e6; @@ -85,7 +85,7 @@ double tic() { * * @return random number */ -float rand_float() { +float rand_float( void ) { int r = rand(); return (float)r / ( (float)RAND_MAX + 1.0f ); } diff --git a/lib/node_modules/@stdlib/blas/base/cswap/benchmark/c/benchmark.length.c b/lib/node_modules/@stdlib/blas/base/cswap/benchmark/c/benchmark.length.c index 35d27db665a..796a416409e 100644 --- a/lib/node_modules/@stdlib/blas/base/cswap/benchmark/c/benchmark.length.c +++ b/lib/node_modules/@stdlib/blas/base/cswap/benchmark/c/benchmark.length.c @@ -35,7 +35,7 @@ /** * Prints the TAP version. */ -void print_version() { +void print_version( void ) { printf( "TAP version 13\n" ); } @@ -74,7 +74,7 @@ void print_results( int iterations, double elapsed ) { * * @return clock time */ -double tic() { +double tic( void ) { struct timeval now; gettimeofday( &now, NULL ); return (double)now.tv_sec + (double)now.tv_usec/1.0e6; @@ -85,7 +85,7 @@ double tic() { * * @return random number */ -float rand_float() { +float rand_float( void ) { int r = rand(); return (float)r / ( (float)RAND_MAX + 1.0f ); } diff --git a/lib/node_modules/@stdlib/blas/base/dasum/benchmark/c/benchmark.length.c b/lib/node_modules/@stdlib/blas/base/dasum/benchmark/c/benchmark.length.c index 1ce7252e84e..695b5028ff5 100644 --- a/lib/node_modules/@stdlib/blas/base/dasum/benchmark/c/benchmark.length.c +++ b/lib/node_modules/@stdlib/blas/base/dasum/benchmark/c/benchmark.length.c @@ -35,7 +35,7 @@ /** * Prints the TAP version. */ -void print_version() { +void print_version( void ) { printf( "TAP version 13\n" ); } @@ -74,7 +74,7 @@ void print_results( int iterations, double elapsed ) { * * @return clock time */ -double tic() { +double tic( void ) { struct timeval now; gettimeofday( &now, NULL ); return (double)now.tv_sec + (double)now.tv_usec/1.0e6; @@ -85,7 +85,7 @@ double tic() { * * @return random number */ -double rand_double() { +double rand_double( void ) { int r = rand(); return (double)r / ( (double)RAND_MAX + 1.0 ); } diff --git a/lib/node_modules/@stdlib/blas/base/daxpy/benchmark/c/benchmark.length.c b/lib/node_modules/@stdlib/blas/base/daxpy/benchmark/c/benchmark.length.c index 305dbea75f0..130496247ab 100644 --- a/lib/node_modules/@stdlib/blas/base/daxpy/benchmark/c/benchmark.length.c +++ b/lib/node_modules/@stdlib/blas/base/daxpy/benchmark/c/benchmark.length.c @@ -35,7 +35,7 @@ /** * Prints the TAP version. */ -void print_version() { +void print_version( void ) { printf( "TAP version 13\n" ); } @@ -74,7 +74,7 @@ void print_results( int iterations, double elapsed ) { * * @return clock time */ -double tic() { +double tic( void ) { struct timeval now; gettimeofday( &now, NULL ); return (double)now.tv_sec + (double)now.tv_usec/1.0e6; @@ -85,7 +85,7 @@ double tic() { * * @return random number */ -double rand_double() { +double rand_double( void ) { int r = rand(); return (double)r / ( (double)RAND_MAX + 1.0 ); } diff --git a/lib/node_modules/@stdlib/blas/base/dcopy/benchmark/c/benchmark.length.c b/lib/node_modules/@stdlib/blas/base/dcopy/benchmark/c/benchmark.length.c index 2a8345a2586..9c40059b4e6 100644 --- a/lib/node_modules/@stdlib/blas/base/dcopy/benchmark/c/benchmark.length.c +++ b/lib/node_modules/@stdlib/blas/base/dcopy/benchmark/c/benchmark.length.c @@ -35,7 +35,7 @@ /** * Prints the TAP version. */ -void print_version() { +void print_version( void ) { printf( "TAP version 13\n" ); } @@ -74,7 +74,7 @@ void print_results( int iterations, double elapsed ) { * * @return clock time */ -double tic() { +double tic( void ) { struct timeval now; gettimeofday( &now, NULL ); return (double)now.tv_sec + (double)now.tv_usec/1.0e6; @@ -85,7 +85,7 @@ double tic() { * * @return random number */ -double rand_double() { +double rand_double( void ) { int r = rand(); return (double)r / ( (double)RAND_MAX + 1.0 ); } diff --git a/lib/node_modules/@stdlib/blas/base/ddot/benchmark/c/benchmark.length.c b/lib/node_modules/@stdlib/blas/base/ddot/benchmark/c/benchmark.length.c index d14ec8f95b8..f69dee3122b 100644 --- a/lib/node_modules/@stdlib/blas/base/ddot/benchmark/c/benchmark.length.c +++ b/lib/node_modules/@stdlib/blas/base/ddot/benchmark/c/benchmark.length.c @@ -35,7 +35,7 @@ /** * Prints the TAP version. */ -void print_version() { +void print_version( void ) { printf( "TAP version 13\n" ); } @@ -74,7 +74,7 @@ void print_results( int iterations, double elapsed ) { * * @return clock time */ -double tic() { +double tic( void ) { struct timeval now; gettimeofday( &now, NULL ); return (double)now.tv_sec + (double)now.tv_usec/1.0e6; @@ -85,7 +85,7 @@ double tic() { * * @return random number */ -double rand_double() { +double rand_double( void ) { int r = rand(); return (double)r / ( (double)RAND_MAX + 1.0 ); } diff --git a/lib/node_modules/@stdlib/blas/base/dnrm2/benchmark/c/benchmark.length.c b/lib/node_modules/@stdlib/blas/base/dnrm2/benchmark/c/benchmark.length.c index 6a315aec258..7fe95835523 100644 --- a/lib/node_modules/@stdlib/blas/base/dnrm2/benchmark/c/benchmark.length.c +++ b/lib/node_modules/@stdlib/blas/base/dnrm2/benchmark/c/benchmark.length.c @@ -35,7 +35,7 @@ /** * Prints the TAP version. */ -void print_version() { +void print_version( void ) { printf( "TAP version 13\n" ); } @@ -74,7 +74,7 @@ void print_results( int iterations, double elapsed ) { * * @return clock time */ -double tic() { +double tic( void ) { struct timeval now; gettimeofday( &now, NULL ); return (double)now.tv_sec + (double)now.tv_usec/1.0e6; @@ -85,7 +85,7 @@ double tic() { * * @return random number */ -double rand_double() { +double rand_double( void ) { int r = rand(); return (double)r / ( (double)RAND_MAX + 1.0 ); } diff --git a/lib/node_modules/@stdlib/blas/base/dscal/benchmark/c/benchmark.length.c b/lib/node_modules/@stdlib/blas/base/dscal/benchmark/c/benchmark.length.c index 17b6d59e03e..8e3424caa8f 100644 --- a/lib/node_modules/@stdlib/blas/base/dscal/benchmark/c/benchmark.length.c +++ b/lib/node_modules/@stdlib/blas/base/dscal/benchmark/c/benchmark.length.c @@ -35,7 +35,7 @@ /** * Prints the TAP version. */ -void print_version() { +void print_version( void ) { printf( "TAP version 13\n" ); } @@ -74,7 +74,7 @@ void print_results( int iterations, double elapsed ) { * * @return clock time */ -double tic() { +double tic( void ) { struct timeval now; gettimeofday( &now, NULL ); return (double)now.tv_sec + (double)now.tv_usec/1.0e6; @@ -85,7 +85,7 @@ double tic() { * * @return random number */ -double rand_double() { +double rand_double( void ) { int r = rand(); return (double)r / ( (double)RAND_MAX + 1.0 ); } diff --git a/lib/node_modules/@stdlib/blas/base/dsdot/benchmark/c/benchmark.length.c b/lib/node_modules/@stdlib/blas/base/dsdot/benchmark/c/benchmark.length.c index e3ca8162436..488eca3fa1a 100644 --- a/lib/node_modules/@stdlib/blas/base/dsdot/benchmark/c/benchmark.length.c +++ b/lib/node_modules/@stdlib/blas/base/dsdot/benchmark/c/benchmark.length.c @@ -35,7 +35,7 @@ /** * Prints the TAP version. */ -void print_version() { +void print_version( void ) { printf( "TAP version 13\n" ); } @@ -74,7 +74,7 @@ void print_results( int iterations, double elapsed ) { * * @return clock time */ -double tic() { +double tic( void ) { struct timeval now; gettimeofday( &now, NULL ); return (double)now.tv_sec + (double)now.tv_usec/1.0e6; @@ -85,7 +85,7 @@ double tic() { * * @return random number */ -float rand_float() { +float rand_float( void ) { int r = rand(); return (float)r / ( (float)RAND_MAX + 1.0f ); } diff --git a/lib/node_modules/@stdlib/blas/base/dswap/benchmark/c/benchmark.length.c b/lib/node_modules/@stdlib/blas/base/dswap/benchmark/c/benchmark.length.c index 0bdfeeb09b8..33e4a580e1c 100644 --- a/lib/node_modules/@stdlib/blas/base/dswap/benchmark/c/benchmark.length.c +++ b/lib/node_modules/@stdlib/blas/base/dswap/benchmark/c/benchmark.length.c @@ -35,7 +35,7 @@ /** * Prints the TAP version. */ -void print_version() { +void print_version( void ) { printf( "TAP version 13\n" ); } @@ -74,7 +74,7 @@ void print_results( int iterations, double elapsed ) { * * @return clock time */ -double tic() { +double tic( void ) { struct timeval now; gettimeofday( &now, NULL ); return (double)now.tv_sec + (double)now.tv_usec/1.0e6; @@ -85,7 +85,7 @@ double tic() { * * @return random number */ -double rand_double() { +double rand_double( void ) { int r = rand(); return (double)r / ( (double)RAND_MAX + 1.0 ); } diff --git a/lib/node_modules/@stdlib/blas/base/sasum/benchmark/c/benchmark.length.c b/lib/node_modules/@stdlib/blas/base/sasum/benchmark/c/benchmark.length.c index 1d61bfa75bf..ade0cfbdb1f 100644 --- a/lib/node_modules/@stdlib/blas/base/sasum/benchmark/c/benchmark.length.c +++ b/lib/node_modules/@stdlib/blas/base/sasum/benchmark/c/benchmark.length.c @@ -35,7 +35,7 @@ /** * Prints the TAP version. */ -void print_version() { +void print_version( void ) { printf( "TAP version 13\n" ); } @@ -74,7 +74,7 @@ void print_results( int iterations, double elapsed ) { * * @return clock time */ -double tic() { +double tic( void ) { struct timeval now; gettimeofday( &now, NULL ); return (double)now.tv_sec + (double)now.tv_usec/1.0e6; @@ -85,7 +85,7 @@ double tic() { * * @return random number */ -float rand_float() { +float rand_float( void ) { int r = rand(); return (float)r / ( (float)RAND_MAX + 1.0f ); } diff --git a/lib/node_modules/@stdlib/blas/base/saxpy/benchmark/c/benchmark.length.c b/lib/node_modules/@stdlib/blas/base/saxpy/benchmark/c/benchmark.length.c index 9392391fa95..c0c3f63642f 100644 --- a/lib/node_modules/@stdlib/blas/base/saxpy/benchmark/c/benchmark.length.c +++ b/lib/node_modules/@stdlib/blas/base/saxpy/benchmark/c/benchmark.length.c @@ -35,7 +35,7 @@ /** * Prints the TAP version. */ -void print_version() { +void print_version( void ) { printf( "TAP version 13\n" ); } @@ -74,7 +74,7 @@ void print_results( int iterations, double elapsed ) { * * @return clock time */ -double tic() { +double tic( void ) { struct timeval now; gettimeofday( &now, NULL ); return (double)now.tv_sec + (double)now.tv_usec/1.0e6; @@ -85,7 +85,7 @@ double tic() { * * @return random number */ -float rand_float() { +float rand_float( void ) { int r = rand(); return (float)r / ( (float)RAND_MAX + 1.0f ); } diff --git a/lib/node_modules/@stdlib/blas/base/scopy/benchmark/c/benchmark.length.c b/lib/node_modules/@stdlib/blas/base/scopy/benchmark/c/benchmark.length.c index ad932640b6c..2b16c132c12 100644 --- a/lib/node_modules/@stdlib/blas/base/scopy/benchmark/c/benchmark.length.c +++ b/lib/node_modules/@stdlib/blas/base/scopy/benchmark/c/benchmark.length.c @@ -35,7 +35,7 @@ /** * Prints the TAP version. */ -void print_version() { +void print_version( void ) { printf( "TAP version 13\n" ); } @@ -74,7 +74,7 @@ void print_results( int iterations, double elapsed ) { * * @return clock time */ -double tic() { +double tic( void ) { struct timeval now; gettimeofday( &now, NULL ); return (double)now.tv_sec + (double)now.tv_usec/1.0e6; @@ -85,7 +85,7 @@ double tic() { * * @return random number */ -float rand_float() { +float rand_float( void ) { int r = rand(); return (float)r / ( (float)RAND_MAX + 1.0f ); } diff --git a/lib/node_modules/@stdlib/blas/base/sdot/benchmark/c/benchmark.length.c b/lib/node_modules/@stdlib/blas/base/sdot/benchmark/c/benchmark.length.c index 6e4615f86af..3e1ea41425e 100644 --- a/lib/node_modules/@stdlib/blas/base/sdot/benchmark/c/benchmark.length.c +++ b/lib/node_modules/@stdlib/blas/base/sdot/benchmark/c/benchmark.length.c @@ -35,7 +35,7 @@ /** * Prints the TAP version. */ -void print_version() { +void print_version( void ) { printf( "TAP version 13\n" ); } @@ -74,7 +74,7 @@ void print_results( int iterations, double elapsed ) { * * @return clock time */ -double tic() { +double tic( void ) { struct timeval now; gettimeofday( &now, NULL ); return (double)now.tv_sec + (double)now.tv_usec/1.0e6; @@ -85,7 +85,7 @@ double tic() { * * @return random number */ -float rand_float() { +float rand_float( void ) { int r = rand(); return (float)r / ( (float)RAND_MAX + 1.0f ); } diff --git a/lib/node_modules/@stdlib/blas/base/sdsdot/benchmark/c/benchmark.length.c b/lib/node_modules/@stdlib/blas/base/sdsdot/benchmark/c/benchmark.length.c index 34da4f3cbb8..a6f052f88d8 100644 --- a/lib/node_modules/@stdlib/blas/base/sdsdot/benchmark/c/benchmark.length.c +++ b/lib/node_modules/@stdlib/blas/base/sdsdot/benchmark/c/benchmark.length.c @@ -35,7 +35,7 @@ /** * Prints the TAP version. */ -void print_version() { +void print_version( void ) { printf( "TAP version 13\n" ); } @@ -74,7 +74,7 @@ void print_results( int iterations, double elapsed ) { * * @return clock time */ -double tic() { +double tic( void ) { struct timeval now; gettimeofday( &now, NULL ); return (double)now.tv_sec + (double)now.tv_usec/1.0e6; @@ -85,7 +85,7 @@ double tic() { * * @return random number */ -float rand_float() { +float rand_float( void ) { int r = rand(); return (float)r / ( (float)RAND_MAX + 1.0f ); } diff --git a/lib/node_modules/@stdlib/blas/base/snrm2/benchmark/c/benchmark.length.c b/lib/node_modules/@stdlib/blas/base/snrm2/benchmark/c/benchmark.length.c index c650b23abe5..fc30c78788c 100644 --- a/lib/node_modules/@stdlib/blas/base/snrm2/benchmark/c/benchmark.length.c +++ b/lib/node_modules/@stdlib/blas/base/snrm2/benchmark/c/benchmark.length.c @@ -35,7 +35,7 @@ /** * Prints the TAP version. */ -void print_version() { +void print_version( void ) { printf( "TAP version 13\n" ); } @@ -74,7 +74,7 @@ void print_results( int iterations, double elapsed ) { * * @return clock time */ -double tic() { +double tic( void ) { struct timeval now; gettimeofday( &now, NULL ); return (double)now.tv_sec + (double)now.tv_usec/1.0e6; @@ -85,7 +85,7 @@ double tic() { * * @return random number */ -float rand_float() { +float rand_float( void ) { int r = rand(); return (float)r / ( (float)RAND_MAX + 1.0f ); } diff --git a/lib/node_modules/@stdlib/blas/base/sscal/benchmark/c/benchmark.length.c b/lib/node_modules/@stdlib/blas/base/sscal/benchmark/c/benchmark.length.c index f2ca631f77f..dc25bf188b6 100644 --- a/lib/node_modules/@stdlib/blas/base/sscal/benchmark/c/benchmark.length.c +++ b/lib/node_modules/@stdlib/blas/base/sscal/benchmark/c/benchmark.length.c @@ -35,7 +35,7 @@ /** * Prints the TAP version. */ -void print_version() { +void print_version( void ) { printf( "TAP version 13\n" ); } @@ -74,7 +74,7 @@ void print_results( int iterations, double elapsed ) { * * @return clock time */ -double tic() { +double tic( void ) { struct timeval now; gettimeofday( &now, NULL ); return (double)now.tv_sec + (double)now.tv_usec/1.0e6; @@ -85,7 +85,7 @@ double tic() { * * @return random number */ -float rand_float() { +float rand_float( void ) { int r = rand(); return (float)r / ( (float)RAND_MAX + 1.0f ); } diff --git a/lib/node_modules/@stdlib/blas/base/sswap/benchmark/c/benchmark.length.c b/lib/node_modules/@stdlib/blas/base/sswap/benchmark/c/benchmark.length.c index c3d17658008..07a1701e6dd 100644 --- a/lib/node_modules/@stdlib/blas/base/sswap/benchmark/c/benchmark.length.c +++ b/lib/node_modules/@stdlib/blas/base/sswap/benchmark/c/benchmark.length.c @@ -35,7 +35,7 @@ /** * Prints the TAP version. */ -void print_version() { +void print_version( void ) { printf( "TAP version 13\n" ); } @@ -74,7 +74,7 @@ void print_results( int iterations, double elapsed ) { * * @return clock time */ -double tic() { +double tic( void ) { struct timeval now; gettimeofday( &now, NULL ); return (double)now.tv_sec + (double)now.tv_usec/1.0e6; @@ -85,7 +85,7 @@ double tic() { * * @return random number */ -float rand_float() { +float rand_float( void ) { int r = rand(); return (float)r / ( (float)RAND_MAX + 1.0f ); }