Skip to content

Commit 5a36be3

Browse files
committed
style: resolve lint errors
1 parent 0c35964 commit 5a36be3

File tree

18 files changed

+54
-54
lines changed

18 files changed

+54
-54
lines changed

lib/node_modules/@stdlib/blas/base/ccopy/benchmark/c/benchmark.length.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
/**
3636
* Prints the TAP version.
3737
*/
38-
void print_version() {
38+
void print_version( void ) {
3939
printf( "TAP version 13\n" );
4040
}
4141

@@ -74,7 +74,7 @@ void print_results( int iterations, double elapsed ) {
7474
*
7575
* @return clock time
7676
*/
77-
double tic() {
77+
double tic( void ) {
7878
struct timeval now;
7979
gettimeofday( &now, NULL );
8080
return (double)now.tv_sec + (double)now.tv_usec/1.0e6;
@@ -85,7 +85,7 @@ double tic() {
8585
*
8686
* @return random number
8787
*/
88-
float rand_float() {
88+
float rand_float( void ) {
8989
int r = rand();
9090
return (float)r / ( (float)RAND_MAX + 1.0f );
9191
}

lib/node_modules/@stdlib/blas/base/cswap/benchmark/c/benchmark.length.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
/**
3636
* Prints the TAP version.
3737
*/
38-
void print_version() {
38+
void print_version( void ) {
3939
printf( "TAP version 13\n" );
4040
}
4141

@@ -74,7 +74,7 @@ void print_results( int iterations, double elapsed ) {
7474
*
7575
* @return clock time
7676
*/
77-
double tic() {
77+
double tic( void ) {
7878
struct timeval now;
7979
gettimeofday( &now, NULL );
8080
return (double)now.tv_sec + (double)now.tv_usec/1.0e6;
@@ -85,7 +85,7 @@ double tic() {
8585
*
8686
* @return random number
8787
*/
88-
float rand_float() {
88+
float rand_float( void ) {
8989
int r = rand();
9090
return (float)r / ( (float)RAND_MAX + 1.0f );
9191
}

lib/node_modules/@stdlib/blas/base/dasum/benchmark/c/benchmark.length.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
/**
3636
* Prints the TAP version.
3737
*/
38-
void print_version() {
38+
void print_version( void ) {
3939
printf( "TAP version 13\n" );
4040
}
4141

@@ -74,7 +74,7 @@ void print_results( int iterations, double elapsed ) {
7474
*
7575
* @return clock time
7676
*/
77-
double tic() {
77+
double tic( void ) {
7878
struct timeval now;
7979
gettimeofday( &now, NULL );
8080
return (double)now.tv_sec + (double)now.tv_usec/1.0e6;
@@ -85,7 +85,7 @@ double tic() {
8585
*
8686
* @return random number
8787
*/
88-
double rand_double() {
88+
double rand_double( void ) {
8989
int r = rand();
9090
return (double)r / ( (double)RAND_MAX + 1.0 );
9191
}

lib/node_modules/@stdlib/blas/base/daxpy/benchmark/c/benchmark.length.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
/**
3636
* Prints the TAP version.
3737
*/
38-
void print_version() {
38+
void print_version( void ) {
3939
printf( "TAP version 13\n" );
4040
}
4141

@@ -74,7 +74,7 @@ void print_results( int iterations, double elapsed ) {
7474
*
7575
* @return clock time
7676
*/
77-
double tic() {
77+
double tic( void ) {
7878
struct timeval now;
7979
gettimeofday( &now, NULL );
8080
return (double)now.tv_sec + (double)now.tv_usec/1.0e6;
@@ -85,7 +85,7 @@ double tic() {
8585
*
8686
* @return random number
8787
*/
88-
double rand_double() {
88+
double rand_double( void ) {
8989
int r = rand();
9090
return (double)r / ( (double)RAND_MAX + 1.0 );
9191
}

lib/node_modules/@stdlib/blas/base/dcopy/benchmark/c/benchmark.length.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
/**
3636
* Prints the TAP version.
3737
*/
38-
void print_version() {
38+
void print_version( void ) {
3939
printf( "TAP version 13\n" );
4040
}
4141

@@ -74,7 +74,7 @@ void print_results( int iterations, double elapsed ) {
7474
*
7575
* @return clock time
7676
*/
77-
double tic() {
77+
double tic( void ) {
7878
struct timeval now;
7979
gettimeofday( &now, NULL );
8080
return (double)now.tv_sec + (double)now.tv_usec/1.0e6;
@@ -85,7 +85,7 @@ double tic() {
8585
*
8686
* @return random number
8787
*/
88-
double rand_double() {
88+
double rand_double( void ) {
8989
int r = rand();
9090
return (double)r / ( (double)RAND_MAX + 1.0 );
9191
}

lib/node_modules/@stdlib/blas/base/ddot/benchmark/c/benchmark.length.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
/**
3636
* Prints the TAP version.
3737
*/
38-
void print_version() {
38+
void print_version( void ) {
3939
printf( "TAP version 13\n" );
4040
}
4141

@@ -74,7 +74,7 @@ void print_results( int iterations, double elapsed ) {
7474
*
7575
* @return clock time
7676
*/
77-
double tic() {
77+
double tic( void ) {
7878
struct timeval now;
7979
gettimeofday( &now, NULL );
8080
return (double)now.tv_sec + (double)now.tv_usec/1.0e6;
@@ -85,7 +85,7 @@ double tic() {
8585
*
8686
* @return random number
8787
*/
88-
double rand_double() {
88+
double rand_double( void ) {
8989
int r = rand();
9090
return (double)r / ( (double)RAND_MAX + 1.0 );
9191
}

lib/node_modules/@stdlib/blas/base/dnrm2/benchmark/c/benchmark.length.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
/**
3636
* Prints the TAP version.
3737
*/
38-
void print_version() {
38+
void print_version( void ) {
3939
printf( "TAP version 13\n" );
4040
}
4141

@@ -74,7 +74,7 @@ void print_results( int iterations, double elapsed ) {
7474
*
7575
* @return clock time
7676
*/
77-
double tic() {
77+
double tic( void ) {
7878
struct timeval now;
7979
gettimeofday( &now, NULL );
8080
return (double)now.tv_sec + (double)now.tv_usec/1.0e6;
@@ -85,7 +85,7 @@ double tic() {
8585
*
8686
* @return random number
8787
*/
88-
double rand_double() {
88+
double rand_double( void ) {
8989
int r = rand();
9090
return (double)r / ( (double)RAND_MAX + 1.0 );
9191
}

lib/node_modules/@stdlib/blas/base/dscal/benchmark/c/benchmark.length.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
/**
3636
* Prints the TAP version.
3737
*/
38-
void print_version() {
38+
void print_version( void ) {
3939
printf( "TAP version 13\n" );
4040
}
4141

@@ -74,7 +74,7 @@ void print_results( int iterations, double elapsed ) {
7474
*
7575
* @return clock time
7676
*/
77-
double tic() {
77+
double tic( void ) {
7878
struct timeval now;
7979
gettimeofday( &now, NULL );
8080
return (double)now.tv_sec + (double)now.tv_usec/1.0e6;
@@ -85,7 +85,7 @@ double tic() {
8585
*
8686
* @return random number
8787
*/
88-
double rand_double() {
88+
double rand_double( void ) {
8989
int r = rand();
9090
return (double)r / ( (double)RAND_MAX + 1.0 );
9191
}

lib/node_modules/@stdlib/blas/base/dsdot/benchmark/c/benchmark.length.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
/**
3636
* Prints the TAP version.
3737
*/
38-
void print_version() {
38+
void print_version( void ) {
3939
printf( "TAP version 13\n" );
4040
}
4141

@@ -74,7 +74,7 @@ void print_results( int iterations, double elapsed ) {
7474
*
7575
* @return clock time
7676
*/
77-
double tic() {
77+
double tic( void ) {
7878
struct timeval now;
7979
gettimeofday( &now, NULL );
8080
return (double)now.tv_sec + (double)now.tv_usec/1.0e6;
@@ -85,7 +85,7 @@ double tic() {
8585
*
8686
* @return random number
8787
*/
88-
float rand_float() {
88+
float rand_float( void ) {
8989
int r = rand();
9090
return (float)r / ( (float)RAND_MAX + 1.0f );
9191
}

lib/node_modules/@stdlib/blas/base/dswap/benchmark/c/benchmark.length.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
/**
3636
* Prints the TAP version.
3737
*/
38-
void print_version() {
38+
void print_version( void ) {
3939
printf( "TAP version 13\n" );
4040
}
4141

@@ -74,7 +74,7 @@ void print_results( int iterations, double elapsed ) {
7474
*
7575
* @return clock time
7676
*/
77-
double tic() {
77+
double tic( void ) {
7878
struct timeval now;
7979
gettimeofday( &now, NULL );
8080
return (double)now.tv_sec + (double)now.tv_usec/1.0e6;
@@ -85,7 +85,7 @@ double tic() {
8585
*
8686
* @return random number
8787
*/
88-
double rand_double() {
88+
double rand_double( void ) {
8989
int r = rand();
9090
return (double)r / ( (double)RAND_MAX + 1.0 );
9191
}

0 commit comments

Comments
 (0)