Commit e67edc15 by Jeffrey A Law Committed by Jeff Law

* libF77/signal_.c: Undo last change until we can fix it right.

From-SVN: r16264
parent a886ae74
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> 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. * libF77/signal_.c (G77_signal_0): Make return type sig_pf as well.
......
...@@ -2,13 +2,13 @@ ...@@ -2,13 +2,13 @@
#include "signal1.h" #include "signal1.h"
#ifdef KR_headers #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 #else
sig_pf G77_signal_0 (integer *sigp, sig_pf proc) ftnint G77_signal_0 (integer *sigp, sig_pf proc)
#endif #endif
{ {
int sig; int sig;
sig = (int)*sigp; sig = (int)*sigp;
return signal(sig, proc); return (ftnint)signal(sig, proc);
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment