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
f4d21c5c
Commit
f4d21c5c
authored
Oct 05, 1994
by
Michael Bushnell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Define O_RDONLY if not already defined and use it in read_specs's call
to open. From-SVN: r8217
parent
0c85e387
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletions
+6
-1
gcc/gcc.c
+6
-1
No files found.
gcc/gcc.c
View file @
f4d21c5c
...
...
@@ -100,6 +100,11 @@ compilation is specified by a string called a "spec". */
#define NULL 0
#endif
/* Define O_RDONLY if the system hasn't defined it for us. */
#ifndef O_RDONLY
#define O_RDONLY 0
#endif
#ifndef GENERIC_PTR
#if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__)
#define GENERIC_PTR void *
...
...
@@ -1045,7 +1050,7 @@ read_specs (filename)
fprintf
(
stderr
,
"Reading specs from %s
\n
"
,
filename
);
/* Open and stat the file. */
desc
=
open
(
filename
,
0
,
0
);
desc
=
open
(
filename
,
O_RDONLY
,
0
);
if
(
desc
<
0
)
pfatal_with_name
(
filename
);
if
(
stat
(
filename
,
&
statbuf
)
<
0
)
...
...
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