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
55105156
Commit
55105156
authored
Jul 17, 2001
by
Bruce Korb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
HPUX-es vsnprintf and Ultrix-es atexit declaration
From-SVN: r44058
parent
f79ced71
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
42 additions
and
0 deletions
+42
-0
gcc/ChangeLog
+9
-0
gcc/fixinc/inclhack.def
+33
-0
No files found.
gcc/ChangeLog
View file @
55105156
2001-07-16 John David Anglin <dave@hiauly1.hia.nrc.ca>
* inclhack.def (ultrix_atexit_param): New hack to fix ultrix 4.3
atexit declaration in stdlib.h.
2001-07-16 Richard Begg <Richard.Begg@colesmyer.com.au>
* fixinc/inclhack.def(hpux_vsnprintf): brokenness in stdio.h
Mon Jul 16 22:48:00 CEST 2001 Jan Hubicka <jh@suse.cz>
* basic-block.h (CLEANUP_PRE_SIBCALL): New constant.
...
...
gcc/fixinc/inclhack.def
View file @
55105156
...
...
@@ -1244,6 +1244,24 @@ fix = {
/*
* Fix hpux 11.00 broken vsnprintf declaration
*/
fix = {
hackname = hpux11_vsnprintf;
files = stdio.h;
select = 'extern int vsnprintf\(char \*, __size_t, const char \*,'
' __va__list\);';
c_fix = format;
c_fix_arg = "extern int vsnprintf(char *, __size_t, const char *,"
" __va_list);";
test_text = 'extern int vsnprintf(char *, __size_t, const char *,'
' __va__list);';
};
/*
* get rid of bogus inline definitions in HP-UX 8.0
*/
fix = {
...
...
@@ -2869,6 +2887,21 @@ fix = {
/*
* function parameter to atexit is missing "void" on VAX Ultrix 4.3.
*/
fix = {
hackname = ultrix_atexit_param;
files = stdlib.h;
select = 'atexit\(.*\(\)';
c_fix = format;
c_fix_arg = "atexit( void (*__func)( void )";
test_text = "int atexit( void (*__func)() );\n";
};
/*
* parameter to atof not const on DECstation Ultrix V4.0 and NEWS-OS 4.2R.
*/
fix = {
...
...
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