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
872d2094
Commit
872d2094
authored
Nov 19, 2009
by
Janne Blomqvist
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move includes after include guards
From-SVN: r154343
parent
e4d5031c
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
6 deletions
+14
-6
libgfortran/ChangeLog
+6
-0
libgfortran/io/fbuf.h
+2
-2
libgfortran/io/format.h
+3
-2
libgfortran/io/unix.h
+3
-2
No files found.
libgfortran/ChangeLog
View file @
872d2094
2009-11-19 Janne Blomqvist <jb@gcc.gnu.org>
* io/fbuf.h: Move includes after include guard.
* io/format.h: Likewise.
* io/unix.h: Likewise.
2009-11-18 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR libgfortran/42090
...
...
libgfortran/io/fbuf.h
View file @
872d2094
...
...
@@ -23,11 +23,11 @@ a copy of the GCC Runtime Library Exception along with this program;
see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
<http://www.gnu.org/licenses/>. */
#include "io.h"
#ifndef GFOR_FBUF_H
#define GFOR_FBUF_H
#include "io.h"
/* Formatting buffer. This is a temporary scratch buffer used by
formatted read and writes. After every formatted I/O statement,
...
...
libgfortran/io/format.h
View file @
872d2094
...
...
@@ -23,11 +23,12 @@ a copy of the GCC Runtime Library Exception along with this program;
see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
<http://www.gnu.org/licenses/>. */
#include "io.h"
#ifndef GFOR_FORMAT_H
#define GFOR_FORMAT_H
#include "io.h"
/* Format tokens. Only about half of these can be stored in the
format nodes. */
...
...
libgfortran/io/unix.h
View file @
872d2094
...
...
@@ -23,11 +23,12 @@ a copy of the GCC Runtime Library Exception along with this program;
see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
<http://www.gnu.org/licenses/>. */
#include "io.h"
#ifndef GFOR_UNIX_H
#define GFOR_UNIX_H
#include "io.h"
struct
stream
{
ssize_t
(
*
read
)
(
struct
stream
*
,
void
*
,
ssize_t
);
...
...
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