#include "bench.h" /* * Prim Numbers * * Check for all numbers from 2 to 2000 if they are prim numbers. * The prim number test used here is simple and unoptimized. */ int checkprim_f1(int x) { int y; for (y=2; y