Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
e67edc15
Commit
e67edc15
authored
Nov 02, 1997
by
Jeffrey A Law
Committed by
Jeff Law
Nov 01, 1997
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* libF77/signal_.c: Undo last change until we can fix it right.
From-SVN: r16264
parent
a886ae74
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
gcc/f/runtime/ChangeLog.egcs
+4
-0
gcc/f/runtime/libF77/signal_.c
+3
-3
No files found.
gcc/f/runtime/ChangeLog.egcs
View file @
e67edc15
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.
...
...
gcc/f/runtime/libF77/signal_.c
View file @
e67edc15
...
@@ -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
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment