Added the /WILCOXON subcommand to NPAR TESTS
[pspp-builds.git] / src / ui / gui / psppire.c
index 239d153e4b0d5ca3454f2080f7c21946181cb2af..0467746333c07960ecef3ae8d984c9182c5109ce 100644 (file)
@@ -20,6 +20,7 @@
 #include <assert.h>
 #include <libintl.h>
 #include <gsl/gsl_errno.h>
+#include <signal.h>
 
 #include "relocatable.h"
 
@@ -122,6 +123,9 @@ initialize (void)
   journal_enable ();
   textdomain (PACKAGE);
 
+  /* Ignore alarm clock signals */
+  signal (SIGALRM, SIG_IGN);
+
   new_data_window (NULL, NULL);
 }