]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
emit a comment, print numbers one per line
authorJim Meyering <jim@meyering.net>
Tue, 6 Feb 2001 09:34:18 +0000 (09:34 +0000)
committerJim Meyering <jim@meyering.net>
Tue, 6 Feb 2001 09:34:18 +0000 (09:34 +0000)
src/wheel-gen.pl

index 757c60e9b92f1123a68e560bd9bab69eef6ffe54..90e6801e29ced5e02b9c061c74bed84c02770ea4 100755 (executable)
@@ -56,6 +56,14 @@ sub is_prime ($)
        }
     }
 
+  my $ws_m1 = $wheel_size - 1;
+  print <<EOF;
+/* The first $ws_m1 elements correspond to the incremental offsets of the
+   first $wheel_size primes (@primes).  The $wheel_size(th) element is the
+   difference between that last prime and the next largest integer that is
+   not a multiple of those primes.  */
+EOF
+
   my @increments;
   my $prev = 2;
   for (my $i = 3; ; $i += 2)
@@ -78,7 +86,7 @@ sub is_prime ($)
        }
     }
 
-  print "@increments\n";
+  print join (",\n", @increments), "\n";
 
   exit 0;
 }