You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/_tools/scaffold/math-strided-real-typed-unary/data/benchmark/c/benchmark__length__c.txt
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@
37
37
/**
38
38
* Prints the TAP version.
39
39
*/
40
-
void print_version() {
40
+
static void print_version() {
41
41
printf( "TAP version 13\n" );
42
42
}
43
43
@@ -47,7 +47,7 @@ void print_version() {
47
47
* @param total total number of tests
48
48
* @param passing total number of passing tests
49
49
*/
50
-
void print_summary( int total, int passing ) {
50
+
static void print_summary( int total, int passing ) {
51
51
printf( "#\n" );
52
52
printf( "1..%d\n", total ); // TAP plan
53
53
printf( "# total %d\n", total );
@@ -62,7 +62,7 @@ void print_summary( int total, int passing ) {
62
62
* @param iterations number of iterations
63
63
* @param elapsed elapsed time in seconds
64
64
*/
65
-
void print_results( int iterations, double elapsed ) {
65
+
static void print_results( int iterations, double elapsed ) {
0 commit comments