Index: rnd_printf/tester.c =================================================================== --- rnd_printf/tester.c (revision 34703) +++ rnd_printf/tester.c (revision 34704) @@ -29,6 +29,7 @@ int n, rep; setlocale(LC_ALL, "C"); + rnd_units_init(); for(rep = 0; rep < NUMREP; rep++) { for(n = 0; n < sizeof(c) / sizeof(c[0]); n++) { @@ -69,6 +70,9 @@ printf("Average prints per second: %.4f\n", (double)pc/spent); } #endif + + rnd_units_uninit(); + return 0; }