Index: prcli.c =================================================================== --- prcli.c (revision 3383) +++ prcli.c (revision 3384) @@ -1,9 +1,8 @@ #include -#include #include "misc_util.h" #include "pcb-printf.h" +#include "pcb_bool.h" - int main(int argc, char *argv[]) { const char *fmt = argv[1]; @@ -13,7 +12,7 @@ pcb_printf_slot[0] = "%mr"; for(n = 2; n < argc; n++) { - bool success; + pcb_bool success; double val = GetValueEx(argv[n], NULL, NULL, NULL, "", &success); if (!success) { fprintf(stderr, "Unable to convert '%s' to coord\n", argv[n]);