File: fstop.f

package info (click to toggle)
x13as 1.1-b59-1
  • links: PTS, VCS
  • area: non-free
  • in suites: bookworm
  • size: 9,088 kB
  • sloc: fortran: 114,121; makefile: 14
file content (26 lines) | stat: -rw-r--r-- 1,159 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
**==fstop.f    processed by SPAG 4.03F  at 09:48 on  1 Mar 1994
      SUBROUTINE fstop()
      IMPLICIT NONE
c-----------------------------------------------------------------------
c     Opens a file with the given options and assigns a file handle
c-----------------------------------------------------------------------
c Parameters and include files
c-----------------------------------------------------------------------
      INCLUDE 'stdio.i'
c-----------------------------------------------------------------------
c Local Arguments
c Name  Type Description
c-----------------------------------------------------------------------
c ifile   i  Index for the current file
c-----------------------------------------------------------------------
      INTEGER ifile
c-----------------------------------------------------------------------
c     Close all the open files and stop
c-----------------------------------------------------------------------
      DO ifile=1,Nfile
       CLOSE(Fillst(ifile))
      END DO
      Nfile=0
c     ------------------------------------------------------------------
      RETURN
      END