Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
gcc-cobol
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
COBOLworx
gcc-cobol
Commits
872d2094
Commit
872d2094
authored
15 years ago
by
Janne Blomqvist
Browse files
Options
Downloads
Patches
Plain Diff
Move includes after include guards
From-SVN: r154343
parent
e4d5031c
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
libgfortran/ChangeLog
+6
-0
6 additions, 0 deletions
libgfortran/ChangeLog
libgfortran/io/fbuf.h
+2
-2
2 additions, 2 deletions
libgfortran/io/fbuf.h
libgfortran/io/format.h
+3
-2
3 additions, 2 deletions
libgfortran/io/format.h
libgfortran/io/unix.h
+3
-2
3 additions, 2 deletions
libgfortran/io/unix.h
with
14 additions
and
6 deletions
libgfortran/ChangeLog
+
6
−
0
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
...
...
This diff is collapsed.
Click to expand it.
libgfortran/io/fbuf.h
+
2
−
2
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,
...
...
This diff is collapsed.
Click to expand it.
libgfortran/io/format.h
+
3
−
2
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. */
...
...
This diff is collapsed.
Click to expand it.
libgfortran/io/unix.h
+
3
−
2
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
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment