Deleted Added
full compact
29c29
< #
---
> #
40c40
< *
---
> *
47c47
< *
---
> *
54c54
< *
---
> *
69c69
< * 4. If you include any Windows specific code (or a derivative thereof) from
---
> * 4. If you include any Windows specific code (or a derivative thereof) from
72c72
< *
---
> *
84c84
< *
---
> *
103c103
< printf "#define NUMPRIMES %d\n",$num;
---
> printf "# define NUMPRIMES %d\n",$num;
106c106
< printf "#define NUMPRIMES %d\n",$eight;
---
> printf "# define NUMPRIMES %d\n",$eight;
109c109
< print "static const prime_t primes[NUMPRIMES]=\n\t{\n\t";
---
> print "static const prime_t primes[NUMPRIMES] = {";
113,115c113,115
< printf "\n#ifndef EIGHT_BIT\n\t" if ($primes[$i] > 256) && !($init++);
< printf("\n\t") if (($i%8) == 0) && ($i != 0);
< printf("%4d,",$primes[$i]);
---
> printf "\n#ifndef EIGHT_BIT\n " if ($primes[$i] > 256) && !($init++);
> printf("\n ") if ($i%8) == 0;
> printf(" %5d,",$primes[$i]);
117c117
< print "\n#endif\n\t};\n";
---
> print "\n#endif\n};\n";