diff options
author | jvdelisle <jvdelisle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-03-23 00:13:19 +0000 |
---|---|---|
committer | jvdelisle <jvdelisle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-03-23 00:13:19 +0000 |
commit | 0947818440f6358a5f23f41ba7bd9849ca05ab30 (patch) | |
tree | ebb6f19d686e7bc7043bbf86c7dabbafe6051e15 /libgfortran/io/unix.c | |
parent | 7c660b5b54deced6ef16faacec97acccc14f27f9 (diff) | |
download | gcc-0947818440f6358a5f23f41ba7bd9849ca05ab30.tar.gz |
2007-03-22 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR libgfortran/31052
* file_pos.c: Update Copyright year.
* io/open.c (test_endfile): Restore test_endfile to fix SPEC regression.
Update Copyright year.
* io/io.h: Same.
* io/unix.c (is_special): Add missing type for this function.
Update Copyright year.
* io/transfer.c (next_record_r): Restore test_endfile.
(st_read): Fix whitespace. Update Copyright year
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@123139 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran/io/unix.c')
-rw-r--r-- | libgfortran/io/unix.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libgfortran/io/unix.c b/libgfortran/io/unix.c index 4b9d87f4ee8..458983c4595 100644 --- a/libgfortran/io/unix.c +++ b/libgfortran/io/unix.c @@ -1892,6 +1892,7 @@ is_seekable (stream *s) /* is_special()-- Return nonzero if the stream is not a regular file. */ +int is_special (stream *s) { return ((unix_stream *) s)->special_file; |