Index: prcli.c =================================================================== --- prcli.c (revision 31006) +++ prcli.c (revision 31007) @@ -12,7 +12,7 @@ setlocale(LC_ALL, "C"); - pcb_printf_slot[0] = "%mr"; + rnd_printf_slot[0] = "%mr"; for(n = 2; n < argc; n++) { rnd_bool success; @@ -24,7 +24,7 @@ crd = val; } - pcb_fprintf(stdout, fmt, crd, 70000, 70000, 70000, 70000); + rnd_fprintf(stdout, fmt, crd, 70000, 70000, 70000, 70000); printf("\n"); Index: prclimq.c =================================================================== --- prclimq.c (revision 31006) +++ prclimq.c (revision 31007) @@ -6,9 +6,9 @@ int main(int argc, char *argv[]) { - pcb_printf_slot[0] = "%{ ()}mq"; + rnd_printf_slot[0] = "%{ ()}mq"; setlocale(LC_ALL, "C"); - pcb_fprintf(stdout, argv[1], argv[2]); + rnd_fprintf(stdout, argv[1], argv[2]); printf("\n"); return 0; } Index: tester.c =================================================================== --- tester.c (revision 31006) +++ tester.c (revision 31007) @@ -10,7 +10,7 @@ # define PCB_PRINTF(fmt, ...) \ do { \ pc++; \ - pcb_snprintf(buff, sizeof(buff), fmt, __VA_ARGS__); \ + rnd_snprintf(buff, sizeof(buff), fmt, __VA_ARGS__); \ } while(0) #else # define NUMREP 1