pspp-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pspp-cvs] pspp/src/libpspp ChangeLog model-checker.c


From: Ben Pfaff
Subject: [Pspp-cvs] pspp/src/libpspp ChangeLog model-checker.c
Date: Wed, 25 Apr 2007 15:59:20 +0000

CVSROOT:        /cvsroot/pspp
Module name:    pspp
Changes by:     Ben Pfaff <blp> 07/04/25 15:59:20

Modified files:
        src/libpspp    : ChangeLog model-checker.c 

Log message:
        Don't use type sighandler_t, which is a GNU extension.  Reported by
        "Daniel E WILLIAMS" <address@hidden>.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/pspp/src/libpspp/ChangeLog?cvsroot=pspp&r1=1.64&r2=1.65
http://cvs.savannah.gnu.org/viewcvs/pspp/src/libpspp/model-checker.c?cvsroot=pspp&r1=1.2&r2=1.3

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/pspp/pspp/src/libpspp/ChangeLog,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -b -r1.64 -r1.65
--- ChangeLog   25 Apr 2007 00:09:36 -0000      1.64
+++ ChangeLog   25 Apr 2007 15:59:20 -0000      1.65
@@ -1,3 +1,9 @@
+2007-04-25  Ben Pfaff  <address@hidden>
+
+       * model-checker.c: Don't use type sighandler_t, which is a GNU
+       extension.  Reported by "Daniel E WILLIAMS"
+       <address@hidden>.
+
 2007-04-25 John Darrington <address@hidden>
 
        * i18n.c: Fixed bug converting long strings

Index: model-checker.c
===================================================================
RCS file: /cvsroot/pspp/pspp/src/libpspp/model-checker.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- model-checker.c     23 Apr 2007 01:26:32 -0000      1.2
+++ model-checker.c     25 Apr 2007 15:59:20 -0000      1.3
@@ -890,7 +890,7 @@
     /* Information for handling and restoring SIGINT. */
     bool interrupted;                   /* SIGINT received? */
     bool *saved_interrupted_ptr;        /* Saved value of interrupted_ptr. */
-    sighandler_t saved_sigint;          /* Saved SIGINT handler. */
+    void (*saved_sigint) (int);         /* Saved SIGINT handler. */
   };
 
 /* A state in the queue. */




reply via email to

[Prev in Thread] Current Thread [Next in Thread]