aboutsummaryrefslogtreecommitdiff
path: root/libgfortran
diff options
context:
space:
mode:
authorJanne Blomqvist <jb@gcc.gnu.org>2010-11-03 22:49:31 +0200
committerJanne Blomqvist <jb@gcc.gnu.org>2010-11-03 22:49:31 +0200
commit576e00858c8b8d6d9477fd44e8b210ab25b6de69 (patch)
treeea49d5e945975d3ea074d31cc2addc838f18e0c2 /libgfortran
parent92d54f6df5e9455ff4c9425171ff3a0a67e07bd2 (diff)
downloadgcc-576e00858c8b8d6d9477fd44e8b210ab25b6de69.zip
gcc-576e00858c8b8d6d9477fd44e8b210ab25b6de69.tar.gz
gcc-576e00858c8b8d6d9477fd44e8b210ab25b6de69.tar.bz2
Remove unused empty_internal_buffer function
From-SVN: r166276
Diffstat (limited to 'libgfortran')
-rw-r--r--libgfortran/ChangeLog5
-rw-r--r--libgfortran/io/unix.c9
-rw-r--r--libgfortran/io/unix.h3
3 files changed, 5 insertions, 12 deletions
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog
index 78589f5..8e66738 100644
--- a/libgfortran/ChangeLog
+++ b/libgfortran/ChangeLog
@@ -1,3 +1,8 @@
+2010-11-03 Janne Blomqvist <jb@gcc.gnu.org>
+
+ * io/unix.h: Remove empty_internal_buffer prototype.
+ * io/unix.c (empty_internal_buffer): Remove unused function.
+
2010-11-03 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR libgfortran/43899
diff --git a/libgfortran/io/unix.c b/libgfortran/io/unix.c
index a2903af..67d8eb9 100644
--- a/libgfortran/io/unix.c
+++ b/libgfortran/io/unix.c
@@ -849,15 +849,6 @@ mem_close (unix_stream * s)
define functional equivalents of the following.
*********************************************************************/
-/* empty_internal_buffer()-- Zero the buffer of Internal file */
-
-void
-empty_internal_buffer(stream *strm)
-{
- unix_stream * s = (unix_stream *) strm;
- memset(s->buffer, ' ', s->file_length);
-}
-
/* open_internal()-- Returns a stream structure from a character(kind=1)
internal file */
diff --git a/libgfortran/io/unix.h b/libgfortran/io/unix.h
index dc433d7..956c011 100644
--- a/libgfortran/io/unix.h
+++ b/libgfortran/io/unix.h
@@ -189,9 +189,6 @@ internal_proto(is_special);
extern void flush_if_preconnected (stream *);
internal_proto(flush_if_preconnected);
-extern void empty_internal_buffer(stream *);
-internal_proto(empty_internal_buffer);
-
extern int stream_isatty (stream *);
internal_proto(stream_isatty);