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
e7757d69
Commit
e7757d69
authored
Dec 05, 1997
by
Jeffrey A Law
Committed by
Jeff Law
Dec 04, 1997
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* strsignal.c (sys_nsig): Try NSIG and _NSIG.
From-SVN: r16952
parent
01d34110
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
libiberty/ChangeLog
+4
-0
libiberty/strsignal.c
+6
-0
No files found.
libiberty/ChangeLog
View file @
e7757d69
Thu Dec 4 17:25:19 1997 Jeffrey A Law (law@cygnus.com)
* strsignal.c (sys_nsig): Try NSIG and _NSIG.
Tue Oct 28 23:41:15 1997 Judy Goldberg <jodyg@idt.net>
* Makefile.in (CFILES): Add pexecute.c.
...
...
libiberty/strsignal.c
View file @
e7757d69
...
...
@@ -243,7 +243,13 @@ static const char **sys_siglist;
#else
#ifdef NSIG
static
int
sys_nsig
=
NSIG
;
#else
#ifdef _NSIG
static
int
sys_nsig
=
NSIG
;
#endif
#endif
extern
const
char
*
const
sys_siglist
[];
#endif
...
...
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