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
d4d798a3
Commit
d4d798a3
authored
Jul 27, 2009
by
Douglas B Rupp
Committed by
Douglas Rupp
Jul 27, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
system.h (fopen): Undefine if macro.
* system.h (fopen): Undefine if macro. From-SVN: r150132
parent
0c539b47
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletions
+9
-1
gcc/ChangeLog
+4
-0
gcc/system.h
+5
-1
No files found.
gcc/ChangeLog
View file @
d4d798a3
2009-07-27 Douglas B Rupp <rupp@gnat.com>
* system.h (fopen): Undefine if macro.
2009-07-27 Jakub Jelinek <jakub@redhat.com>
2009-07-27 Jakub Jelinek <jakub@redhat.com>
* dwarf2out.c (output_cfi_p): Removed.
* dwarf2out.c (output_cfi_p): Removed.
...
...
gcc/system.h
View file @
d4d798a3
/* Get common system includes and various definitions and declarations based
/* Get common system includes and various definitions and declarations based
on autoconf macros.
on autoconf macros.
Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008
Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008,
2009
Free Software Foundation, Inc.
Free Software Foundation, Inc.
This file is part of GCC.
This file is part of GCC.
...
@@ -46,6 +47,9 @@ along with GCC; see the file COPYING3. If not see
...
@@ -46,6 +47,9 @@ along with GCC; see the file COPYING3. If not see
#endif
#endif
/* Use the unlocked open routines from libiberty. */
/* Use the unlocked open routines from libiberty. */
#ifdef fopen
/* fopen is a #define on VMS. */
#undef fopen
#endif
#define fopen(PATH,MODE) fopen_unlocked(PATH,MODE)
#define fopen(PATH,MODE) fopen_unlocked(PATH,MODE)
#define fdopen(FILDES,MODE) fdopen_unlocked(FILDES,MODE)
#define fdopen(FILDES,MODE) fdopen_unlocked(FILDES,MODE)
#define freopen(PATH,MODE,STREAM) freopen_unlocked(PATH,MODE,STREAM)
#define freopen(PATH,MODE,STREAM) freopen_unlocked(PATH,MODE,STREAM)
...
...
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