From: John Darrington <john@darrington.wattle.id.au>
Date: Sat, 1 Nov 2008 05:17:19 +0000 (+0900)
Subject: Remove reference to sa_restorer, because it's not part of POSIX.
X-Git-Tag: v0.7.1~50^2~22
X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3dc6bb41cd0050bc92be3ef07aabb21e46680179;p=pspp-builds.git

Remove reference to sa_restorer, because it's not part of POSIX.

Prevented compilation on Cygwin.  Reported by unknown-1
---

diff --git a/src/language/stats/wilcoxon.c b/src/language/stats/wilcoxon.c
index bca0b7d9..7552d7ec 100644
--- a/src/language/stats/wilcoxon.c
+++ b/src/language/stats/wilcoxon.c
@@ -402,7 +402,6 @@ timed_wilcoxon_significance (double w, long int n, double timer)
   timeout_action.sa_mask = set;
   timeout_action.sa_flags = 0;
 
-  timeout_action.sa_restorer = 0;
   timeout_action.sa_handler = give_up_callback;
 
   if ( 0 == sigsetjmp (env, 1))