File: rr_f.f

package info (click to toggle)
cfortran 20210827-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 756 kB
  • sloc: ansic: 3,302; fortran: 959; makefile: 113; sh: 14
file content (26 lines) | stat: -rw-r--r-- 629 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
C /* rr_f.f */                   /* anonymous ftp@zebra.desy.de */
C /* An example from cfortran.h package. Requires rr.c or .C    */
C /* Burkhard Burow  burow@desy.de                 1990 - 1996. */

      character*(*) function forstr(a)
      implicit none
      character*(*) a
      forstr = a
      return
      end

      real function rr(i)
      implicit none
      integer i
      rr = i
      return
      end

      character*(*) function forstr2()
      implicit none
C      character*(13) a   VAX/Ultrix complains about these ().
      character*13 a
      data a/'first'/
      forstr2 = a
      return
      end