Delete unneeded directory
[jabaws.git] / website / archive / binaries / mac / src / fasta34 / randtest.c
diff --git a/website/archive/binaries/mac/src/fasta34/randtest.c b/website/archive/binaries/mac/src/fasta34/randtest.c
deleted file mode 100644 (file)
index a7d09d4..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-#include <stdio.h>
-#include <stdlib.h>
-#include <sys/time.h>
-
-main(argc, argv)
-     int argc; char **argv;
-{
-  int i, n, s;
-  struct timeval t;
-
-  if (argc < 2) n = 10;
-  else n = atoi(argv[1]);
-
-  gettimeofday(&t,NULL);
-  printf(" seed: %d\n",t.tv_usec);
-  srandom(t.tv_usec);
-
-  for (i=0; i< n; i++)
-    printf("%3d\n",random()%100);
-
-}