X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fvar-labs.c;h=87916977297c31d7d438b8719a411ec67e713a24;hb=06f9ee45954e5e71fa7f6262dbf37defa1dbf996;hp=a62ec95e21fa4d638b9ac0233463b87e1939793a;hpb=92bfefccd465052e492f669ce561aa25b0110283;p=pspp-builds.git diff --git a/src/var-labs.c b/src/var-labs.c index a62ec95e..87916977 100644 --- a/src/var-labs.c +++ b/src/var-labs.c @@ -29,10 +29,6 @@ #include "debug-print.h" -#if DEBUGGING -static void debug_print (void); -#endif - int cmd_variable_labels (void) { @@ -70,27 +66,5 @@ cmd_variable_labels (void) free (v); } while (token != '.'); -#if 0 && DEBUGGING - debug_print (); -#endif return CMD_SUCCESS; } - -#if 0 && DEBUGGING -static void -debug_print (void) -{ - int i; - - printf (_("Variable labels:\n")); - for (i = 0; i < nvar; i++) - { - printf (" %8s: ", var[i]->name); - if (var[i]->label) - printf ("`%s'", var[i]->label); - else - printf (_("(no variable label)")); - printf ("\n"); - } -} -#endif /* DEBUGGING */