(main): Change format, CLOCKS_PER_SEC is now long.

This commit is contained in:
Andreas Jaeger 2000-09-14 09:41:15 +00:00
parent 5e20fde1cf
commit f3acd084c5

View File

@ -30,7 +30,7 @@ main (int argc, char ** argv)
printf ("%ld clock ticks per second (start=%ld,stop=%ld)\n",
stop - start, start, stop);
printf ("CLOCKS_PER_SEC=%d, sysconf(_SC_CLK_TCK)=%ld\n",
printf ("CLOCKS_PER_SEC=%ld, sysconf(_SC_CLK_TCK)=%ld\n",
CLOCKS_PER_SEC, sysconf(_SC_CLK_TCK));
return 0;
}