Skip to content

Commit ceb4943

Browse files
committed
docs: remove comments
1 parent b13d391 commit ceb4943

File tree

70 files changed

+216
-420
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+216
-420
lines changed

lib/node_modules/@stdlib/blas/ext/base/dapx/benchmark/c/benchmark.length.c

+3-6
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
* limitations under the License.
1717
*/
1818

19-
/**
20-
* Benchmark `dapx`.
21-
*/
2219
#include "stdlib/blas/ext/base/dapx.h"
2320
#include <stdlib.h>
2421
#include <stdio.h>
@@ -35,7 +32,7 @@
3532
/**
3633
* Prints the TAP version.
3734
*/
38-
void print_version() {
35+
void print_version( void ) {
3936
printf( "TAP version 13\n" );
4037
}
4138

@@ -74,7 +71,7 @@ void print_results( int iterations, double elapsed ) {
7471
*
7572
* @return clock time
7673
*/
77-
double tic() {
74+
double tic( void ) {
7875
struct timeval now;
7976
gettimeofday( &now, NULL );
8077
return (double)now.tv_sec + (double)now.tv_usec/1.0e6;
@@ -85,7 +82,7 @@ double tic() {
8582
*
8683
* @return random number
8784
*/
88-
double rand_double() {
85+
double rand_double( void ) {
8986
int r = rand();
9087
return (double)r / ( (double)RAND_MAX + 1.0 );
9188
}

lib/node_modules/@stdlib/blas/ext/base/dapxsum/benchmark/c/benchmark.length.c

+3-6
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
* limitations under the License.
1717
*/
1818

19-
/**
20-
* Benchmark `dapxsum`.
21-
*/
2219
#include "stdlib/blas/ext/base/dapxsum.h"
2320
#include <stdlib.h>
2421
#include <stdio.h>
@@ -35,7 +32,7 @@
3532
/**
3633
* Prints the TAP version.
3734
*/
38-
void print_version() {
35+
void print_version( void ) {
3936
printf( "TAP version 13\n" );
4037
}
4138

@@ -74,7 +71,7 @@ void print_results( int iterations, double elapsed ) {
7471
*
7572
* @return clock time
7673
*/
77-
double tic() {
74+
double tic( void ) {
7875
struct timeval now;
7976
gettimeofday( &now, NULL );
8077
return (double)now.tv_sec + (double)now.tv_usec/1.0e6;
@@ -85,7 +82,7 @@ double tic() {
8582
*
8683
* @return random number
8784
*/
88-
double rand_double() {
85+
double rand_double( void ) {
8986
int r = rand();
9087
return (double)r / ( (double)RAND_MAX + 1.0 );
9188
}

lib/node_modules/@stdlib/blas/ext/base/dapxsumkbn/benchmark/c/benchmark.length.c

+3-6
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
* limitations under the License.
1717
*/
1818

19-
/**
20-
* Benchmark `dapxsumkbn`.
21-
*/
2219
#include "stdlib/blas/ext/base/dapxsumkbn.h"
2320
#include <stdlib.h>
2421
#include <stdio.h>
@@ -35,7 +32,7 @@
3532
/**
3633
* Prints the TAP version.
3734
*/
38-
void print_version() {
35+
void print_version( void ) {
3936
printf( "TAP version 13\n" );
4037
}
4138

@@ -74,7 +71,7 @@ void print_results( int iterations, double elapsed ) {
7471
*
7572
* @return clock time
7673
*/
77-
double tic() {
74+
double tic( void ) {
7875
struct timeval now;
7976
gettimeofday( &now, NULL );
8077
return (double)now.tv_sec + (double)now.tv_usec/1.0e6;
@@ -85,7 +82,7 @@ double tic() {
8582
*
8683
* @return random number
8784
*/
88-
double rand_double() {
85+
double rand_double( void ) {
8986
int r = rand();
9087
return (double)r / ( (double)RAND_MAX + 1.0 );
9188
}

lib/node_modules/@stdlib/blas/ext/base/dapxsumkbn2/benchmark/c/benchmark.length.c

+3-6
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
* limitations under the License.
1717
*/
1818

19-
/**
20-
* Benchmark `dapxsumkbn2`.
21-
*/
2219
#include "stdlib/blas/ext/base/dapxsumkbn2.h"
2320
#include <stdlib.h>
2421
#include <stdio.h>
@@ -35,7 +32,7 @@
3532
/**
3633
* Prints the TAP version.
3734
*/
38-
void print_version() {
35+
void print_version( void ) {
3936
printf( "TAP version 13\n" );
4037
}
4138

@@ -74,7 +71,7 @@ void print_results( int iterations, double elapsed ) {
7471
*
7572
* @return clock time
7673
*/
77-
double tic() {
74+
double tic( void ) {
7875
struct timeval now;
7976
gettimeofday( &now, NULL );
8077
return (double)now.tv_sec + (double)now.tv_usec/1.0e6;
@@ -85,7 +82,7 @@ double tic() {
8582
*
8683
* @return random number
8784
*/
88-
double rand_double() {
85+
double rand_double( void ) {
8986
int r = rand();
9087
return (double)r / ( (double)RAND_MAX + 1.0 );
9188
}

lib/node_modules/@stdlib/blas/ext/base/dapxsumors/benchmark/c/benchmark.length.c

+3-6
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
* limitations under the License.
1717
*/
1818

19-
/**
20-
* Benchmark `dapxsumors`.
21-
*/
2219
#include "stdlib/blas/ext/base/dapxsumors.h"
2320
#include <stdlib.h>
2421
#include <stdio.h>
@@ -35,7 +32,7 @@
3532
/**
3633
* Prints the TAP version.
3734
*/
38-
void print_version() {
35+
void print_version( void ) {
3936
printf( "TAP version 13\n" );
4037
}
4138

@@ -74,7 +71,7 @@ void print_results( int iterations, double elapsed ) {
7471
*
7572
* @return clock time
7673
*/
77-
double tic() {
74+
double tic( void ) {
7875
struct timeval now;
7976
gettimeofday( &now, NULL );
8077
return (double)now.tv_sec + (double)now.tv_usec/1.0e6;
@@ -85,7 +82,7 @@ double tic() {
8582
*
8683
* @return random number
8784
*/
88-
double rand_double() {
85+
double rand_double( void ) {
8986
int r = rand();
9087
return (double)r / ( (double)RAND_MAX + 1.0 );
9188
}

lib/node_modules/@stdlib/blas/ext/base/dapxsumpw/benchmark/c/benchmark.length.c

+3-6
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
* limitations under the License.
1717
*/
1818

19-
/**
20-
* Benchmark `dapxsumpw`.
21-
*/
2219
#include "stdlib/blas/ext/base/dapxsumpw.h"
2320
#include <stdlib.h>
2421
#include <stdio.h>
@@ -35,7 +32,7 @@
3532
/**
3633
* Prints the TAP version.
3734
*/
38-
void print_version() {
35+
void print_version( void ) {
3936
printf( "TAP version 13\n" );
4037
}
4138

@@ -74,7 +71,7 @@ void print_results( int iterations, double elapsed ) {
7471
*
7572
* @return clock time
7673
*/
77-
double tic() {
74+
double tic( void ) {
7875
struct timeval now;
7976
gettimeofday( &now, NULL );
8077
return (double)now.tv_sec + (double)now.tv_usec/1.0e6;
@@ -85,7 +82,7 @@ double tic() {
8582
*
8683
* @return random number
8784
*/
88-
double rand_double() {
85+
double rand_double( void ) {
8986
int r = rand();
9087
return (double)r / ( (double)RAND_MAX + 1.0 );
9188
}

lib/node_modules/@stdlib/blas/ext/base/dasumpw/benchmark/c/benchmark.length.c

+3-6
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
* limitations under the License.
1717
*/
1818

19-
/**
20-
* Benchmark `dasumpw`.
21-
*/
2219
#include "stdlib/blas/ext/base/dasumpw.h"
2320
#include <stdlib.h>
2421
#include <stdio.h>
@@ -35,7 +32,7 @@
3532
/**
3633
* Prints the TAP version.
3734
*/
38-
void print_version() {
35+
void print_version( void ) {
3936
printf( "TAP version 13\n" );
4037
}
4138

@@ -74,7 +71,7 @@ void print_results( int iterations, double elapsed ) {
7471
*
7572
* @return clock time
7673
*/
77-
double tic() {
74+
double tic( void ) {
7875
struct timeval now;
7976
gettimeofday( &now, NULL );
8077
return (double)now.tv_sec + (double)now.tv_usec/1.0e6;
@@ -85,7 +82,7 @@ double tic() {
8582
*
8683
* @return random number
8784
*/
88-
double rand_double() {
85+
double rand_double( void ) {
8986
int r = rand();
9087
return (double)r / ( (double)RAND_MAX + 1.0 );
9188
}

lib/node_modules/@stdlib/blas/ext/base/dcusum/benchmark/c/benchmark.length.c

+3-6
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
* limitations under the License.
1717
*/
1818

19-
/**
20-
* Benchmark `dcusum`.
21-
*/
2219
#include "stdlib/blas/ext/base/dcusum.h"
2320
#include <stdlib.h>
2421
#include <stdio.h>
@@ -35,7 +32,7 @@
3532
/**
3633
* Prints the TAP version.
3734
*/
38-
void print_version() {
35+
void print_version( void ) {
3936
printf( "TAP version 13\n" );
4037
}
4138

@@ -74,7 +71,7 @@ void print_results( int iterations, double elapsed ) {
7471
*
7572
* @return clock time
7673
*/
77-
double tic() {
74+
double tic( void ) {
7875
struct timeval now;
7976
gettimeofday( &now, NULL );
8077
return (double)now.tv_sec + (double)now.tv_usec/1.0e6;
@@ -85,7 +82,7 @@ double tic() {
8582
*
8683
* @return random number
8784
*/
88-
double rand_double() {
85+
double rand_double( void ) {
8986
int r = rand();
9087
return (double)r / ( (double)RAND_MAX + 1.0 );
9188
}

lib/node_modules/@stdlib/blas/ext/base/dcusumkbn/benchmark/c/benchmark.length.c

+3-6
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
* limitations under the License.
1717
*/
1818

19-
/**
20-
* Benchmark `dcusumkbn`.
21-
*/
2219
#include "stdlib/blas/ext/base/dcusumkbn.h"
2320
#include <stdlib.h>
2421
#include <stdio.h>
@@ -35,7 +32,7 @@
3532
/**
3633
* Prints the TAP version.
3734
*/
38-
void print_version() {
35+
void print_version( void ) {
3936
printf( "TAP version 13\n" );
4037
}
4138

@@ -74,7 +71,7 @@ void print_results( int iterations, double elapsed ) {
7471
*
7572
* @return clock time
7673
*/
77-
double tic() {
74+
double tic( void ) {
7875
struct timeval now;
7976
gettimeofday( &now, NULL );
8077
return (double)now.tv_sec + (double)now.tv_usec/1.0e6;
@@ -85,7 +82,7 @@ double tic() {
8582
*
8683
* @return random number
8784
*/
88-
double rand_double() {
85+
double rand_double( void ) {
8986
int r = rand();
9087
return (double)r / ( (double)RAND_MAX + 1.0 );
9188
}

lib/node_modules/@stdlib/blas/ext/base/dcusumkbn2/benchmark/c/benchmark.length.c

+3-6
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
* limitations under the License.
1717
*/
1818

19-
/**
20-
* Benchmark `dcusumkbn2`.
21-
*/
2219
#include "stdlib/blas/ext/base/dcusumkbn2.h"
2320
#include <stdlib.h>
2421
#include <stdio.h>
@@ -35,7 +32,7 @@
3532
/**
3633
* Prints the TAP version.
3734
*/
38-
void print_version() {
35+
void print_version( void ) {
3936
printf( "TAP version 13\n" );
4037
}
4138

@@ -74,7 +71,7 @@ void print_results( int iterations, double elapsed ) {
7471
*
7572
* @return clock time
7673
*/
77-
double tic() {
74+
double tic( void ) {
7875
struct timeval now;
7976
gettimeofday( &now, NULL );
8077
return (double)now.tv_sec + (double)now.tv_usec/1.0e6;
@@ -85,7 +82,7 @@ double tic() {
8582
*
8683
* @return random number
8784
*/
88-
double rand_double() {
85+
double rand_double( void ) {
8986
int r = rand();
9087
return (double)r / ( (double)RAND_MAX + 1.0 );
9188
}

0 commit comments

Comments
 (0)