X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdo-if.c;h=b0014484f0b6d04ee0c0d9ae78942844863dc5c3;hb=60d7d619ee7885ad065f178eb0cf1e5d432b1921;hp=b42e0eb81f9919958907a809612fd22e66499d1f;hpb=4944c86a9318bc5b5578ab145a95c116ffd2c9fd;p=pspp diff --git a/src/do-if.c b/src/do-if.c index b42e0eb81f..b0014484f0 100644 --- a/src/do-if.c +++ b/src/do-if.c @@ -18,6 +18,7 @@ 02111-1307, USA. */ #include +#include "do-ifP.h" #include #include #include "alloc.h" @@ -28,8 +29,6 @@ #include "str.h" #include "var.h" -#undef DEBUGGING -/*#define DEBUGGING 1*/ #include "debug-print.h" #if DEBUGGING @@ -75,8 +74,6 @@ */ /* *INDENT-ON* */ -#include "do-ifP.h" - static struct do_if_trns *parse_do_if (void); static void add_ELSE_IF (struct do_if_trns *); static int goto_trns_proc (struct trns_header *, struct ccase *); @@ -279,7 +276,7 @@ parse_do_if (void) /* Executes a goto transformation. */ static int -goto_trns_proc (struct trns_header * t, struct ccase * c unused) +goto_trns_proc (struct trns_header * t, struct ccase * c UNUSED) { return ((struct goto_trns *) t)->dest; }