Got rid of approx.h and replaced all references to approx_eq() by ==,
[pspp] / src / do-if.c
index b42e0eb81f9919958907a809612fd22e66499d1f..b0014484f0b6d04ee0c0d9ae78942844863dc5c3 100644 (file)
@@ -18,6 +18,7 @@
    02111-1307, USA. */
 
 #include <config.h>
+#include "do-ifP.h"
 #include <assert.h>
 #include <stdlib.h>
 #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;
 }