top(1): remove prime.c

This file was not connected to the build, and is better served by
primes(6) anyways.
This commit is contained in:
Eitan Adler 2018-05-21 04:51:43 +00:00
parent ad8ffc3fc2
commit b3b6732412
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=333964

View File

@ -1,41 +0,0 @@
/*
* Prime number generator. It prints on stdout the next prime number
* higher than the number specified as argv[1].
*/
#include <stdio.h>
#include <math.h>
main(argc, argv)
int argc;
char *argv[];
{
double i, j;
int f;
if (argc < 2)
{
exit(1);
}
i = atoi(argv[1]);
while (i++)
{
f=1;
for (j=2; j<i; j++)
{
if ((i/j)==floor(i/j))
{
f=0;
break;
}
}
if (f)
{
printf("%.0f\n", i);
exit(0);
}
}
}