aboutsummaryrefslogtreecommitdiff
path: root/libgfortran/io
diff options
context:
space:
mode:
Diffstat (limited to 'libgfortran/io')
-rw-r--r--libgfortran/io/fbuf.h4
-rw-r--r--libgfortran/io/format.h5
-rw-r--r--libgfortran/io/unix.h5
3 files changed, 8 insertions, 6 deletions
diff --git a/libgfortran/io/fbuf.h b/libgfortran/io/fbuf.h
index 368cec2..c82d01b 100644
--- a/libgfortran/io/fbuf.h
+++ b/libgfortran/io/fbuf.h
@@ -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,
diff --git a/libgfortran/io/format.h b/libgfortran/io/format.h
index c338daa..4abbbea 100644
--- a/libgfortran/io/format.h
+++ b/libgfortran/io/format.h
@@ -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. */
diff --git a/libgfortran/io/unix.h b/libgfortran/io/unix.h
index 721c63c..f0f0712 100644
--- a/libgfortran/io/unix.h
+++ b/libgfortran/io/unix.h
@@ -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);