aboutsummaryrefslogtreecommitdiff
path: root/libgfortran/io/unix.h
diff options
context:
space:
mode:
authorJanne Blomqvist <jb@gcc.gnu.org>2009-11-19 22:23:03 +0200
committerJanne Blomqvist <jb@gcc.gnu.org>2009-11-19 22:23:03 +0200
commit872d20942396943c60a6c4047ce19a1fc116c29f (patch)
tree409acf997a348ca7f23a7729bdb26ef36f762fdb /libgfortran/io/unix.h
parente4d5031cc88db53fe3aa9759b9c9780c179b21b5 (diff)
downloadgcc-872d20942396943c60a6c4047ce19a1fc116c29f.zip
gcc-872d20942396943c60a6c4047ce19a1fc116c29f.tar.gz
gcc-872d20942396943c60a6c4047ce19a1fc116c29f.tar.bz2
Move includes after include guards
From-SVN: r154343
Diffstat (limited to 'libgfortran/io/unix.h')
-rw-r--r--libgfortran/io/unix.h5
1 files changed, 3 insertions, 2 deletions
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);