summaryrefslogtreecommitdiff
path: root/libgfortran/io/endfile.c
diff options
context:
space:
mode:
authorkargl <kargl@138bc75d-0d04-0410-961f-82ee72b054a4>2005-08-07 22:59:00 +0000
committerkargl <kargl@138bc75d-0d04-0410-961f-82ee72b054a4>2005-08-07 22:59:00 +0000
commita16758bbf249b1dd3b37a6b65a8e7d25f9ea28bb (patch)
treed94fc4ff5bd4d47b085805dbf7f7b4b91a55f035 /libgfortran/io/endfile.c
parent6c306f90a96af99319dd14db3ec40db0b6e1a5bc (diff)
downloadgcc-a16758bbf249b1dd3b37a6b65a8e7d25f9ea28bb.tar.gz
Forgot to remove and add these files in the previous commit.
* io/backspace.c: File removed, contents moved to ... * io/endfile.c: Ditto. * io/rewind.c: Ditto. * io/file_pos.c: New file, ... here. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@102836 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran/io/endfile.c')
-rw-r--r--libgfortran/io/endfile.c59
1 files changed, 0 insertions, 59 deletions
diff --git a/libgfortran/io/endfile.c b/libgfortran/io/endfile.c
deleted file mode 100644
index 8d01ea1076b..00000000000
--- a/libgfortran/io/endfile.c
+++ /dev/null
@@ -1,59 +0,0 @@
-/* Copyright (C) 2002-2003 Free Software Foundation, Inc.
- Contributed by Andy Vaught
-
-This file is part of the GNU Fortran 95 runtime library (libgfortran).
-
-Libgfortran is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
-any later version.
-
-In addition to the permissions in the GNU General Public License, the
-Free Software Foundation gives you unlimited permission to link the
-compiled version of this file into combinations with other programs,
-and to distribute those combinations without any restriction coming
-from the use of this file. (The General Public License restrictions
-do apply in other respects; for example, they cover modification of
-the file, and distribution when not linked into a combine
-executable.)
-
-Libgfortran is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with Libgfortran; see the file COPYING. If not, write to
-the Free Software Foundation, 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA. */
-
-#include "config.h"
-#include "libgfortran.h"
-#include "io.h"
-
-/* endfile.c-- Implement the ENDFILE statement */
-
-extern void st_endfile (void);
-export_proto(st_endfile);
-
-void
-st_endfile (void)
-{
- gfc_unit *u;
-
- library_start ();
-
- u = get_unit (0);
- if (u != NULL)
- {
- current_unit = u; /* next_record() needs this set */
- if (u->current_record)
- next_record (1);
-
- flush(u->s);
- struncate (u->s);
- u->endfile = AFTER_ENDFILE;
- }
-
- library_end ();
-}