OSDN Git Service

* libF77/signal_.c: Undo last change until we can fix it right.
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 2 Nov 1997 01:02:05 +0000 (01:02 +0000)
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 2 Nov 1997 01:02:05 +0000 (01:02 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@16264 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/f/runtime/ChangeLog.egcs
gcc/f/runtime/libF77/signal_.c

index 889228f..8c88104 100644 (file)
@@ -1,3 +1,7 @@
+Sat Nov  1 18:03:42 1997  Jeffrey A Law  (law@cygnus.com)
+
+       * libF77/signal_.c: Undo last change until we can fix it right.
+
 Wed Oct 15 10:06:29 1997  Richard Henderson  <rth@cygnus.com>
 
        * libF77/signal_.c (G77_signal_0): Make return type sig_pf as well.
index 2e1af9d..1ac8139 100644 (file)
@@ -2,13 +2,13 @@
 #include "signal1.h"
 
 #ifdef KR_headers
-sig_pf G77_signal_0 (sigp, proc) integer *sigp; sig_pf proc;
+ftnint G77_signal_0 (sigp, proc) integer *sigp; sig_pf proc;
 #else
-sig_pf G77_signal_0 (integer *sigp, sig_pf proc)
+ftnint G77_signal_0 (integer *sigp, sig_pf proc)
 #endif
 {
        int sig;
        sig = (int)*sigp;
 
-       return signal(sig, proc);
+       return (ftnint)signal(sig, proc);
        }