File: comcmp.f

package info (click to toggle)
ftnchek 3.3.1-7
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,684 kB
  • sloc: ansic: 21,908; fortran: 5,748; yacc: 4,071; sh: 3,035; makefile: 895; lisp: 322; f90: 118; perl: 76
file content (35 lines) | stat: -rw-r--r-- 772 bytes parent folder | download | duplicates (8)
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
27
28
29
30
31
32
33
34
35
      character *8 c8,c7*7
      character c1
      common /chars/ c1,c8,c7
      integer iplain
      integer *4 ifour
      integer*2 itwo
      common /ints/ iplain,ifour,itwo
      common /bk1/ a,b,c,d,e,f,g
      c1 = 'A'
      call foo
      end
      subroutine foo
      character *8 c8,c7*7
      character c1
      common /chars/ c7,c8,c1
      integer iplain
      integer *4 ifour
      integer*2 itwo
      common /ints/ iplain,itwo,ifour
      common /bk1/ i,j,k,l,m,n,o
      c1 = 'A'
      call bar
      end
      subroutine bar
      character *8 c8,c7*7
      character c1
      common /chars/ c7,c8
      integer iplain
      integer *4 ifour
      common /ints/ ifour,iplain
      common /bk1/ a(3),j,x,y,z
      c1 = 'A'
      c7 = c1//c8
      end